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 and hengyunabc committed Jan 2, 2024
1 parent 175e752 commit 800695c
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 800695c

Please sign in to comment.