Skip to content

Commit

Permalink
sysenv/sysprop command sorted by key #2619 (#2652)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaymondLam1 authored Sep 8, 2023
1 parent 30793f9 commit 6a3bc66
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package com.taobao.arthas.core.command.model;

import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;

/**
* sysenv KV Result
* @author gongdewei 2020/4/2
*/
public class SystemEnvModel extends ResultModel {

private Map<String, String> env = new HashMap<String, String>();
private Map<String, String> env = new TreeMap<String, String>();

public SystemEnvModel() {
}
Expand Down

0 comments on commit 6a3bc66

Please sign in to comment.