图标顺序调整

This commit is contained in:
zhal 2022-07-19 21:25:56 +08:00
parent 3dd016a0b0
commit 93440efe45

View File

@ -116,8 +116,8 @@ public class PALMethodCache {
} else {
List<String> result = new ArrayList<>();
//String[] methodArray = new String[] { "process", "org", "data", "itsystem", "control" };
String[] methodArray = new String[] { "process","data","control","org","itsystem"};
for (String method : methodArray) {
String[] methodArrays = new String[] { "process","data","control","org","itsystem"};
for (String method : methodArrays) {
if (list.contains(method)) {
result.add(method);
}