Skip to content

Commit

Permalink
feat: sysenv sorted by property key #alibaba#2619
Browse files Browse the repository at this point in the history
  • Loading branch information
RaymondLam1 committed Sep 8, 2023
1 parent 30793f9 commit 2e40c0d
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 2e40c0d

Please sign in to comment.