|
@@ -19,7 +19,7 @@ import java.util.stream.Collectors;
|
|
public class ArbitrateCallback {
|
|
public class ArbitrateCallback {
|
|
private static Logger LOGGER = LoggerFactory.getLogger(ArbitrateCallback.class);
|
|
private static Logger LOGGER = LoggerFactory.getLogger(ArbitrateCallback.class);
|
|
|
|
|
|
- public static char[] LEVELS = new char[5];//各评卷员评选的档位数组
|
|
|
|
|
|
+ public static char[] LEVELS = null;//各评卷员评选的档位数组
|
|
|
|
|
|
public static int MAX_DISTANCE = 2 //仲裁档位
|
|
public static int MAX_DISTANCE = 2 //仲裁档位
|
|
, SUM_DISTANCE = 2 * 2 + 1;//最大落差档位和
|
|
, SUM_DISTANCE = 2 * 2 + 1;//最大落差档位和
|
|
@@ -36,6 +36,7 @@ public class ArbitrateCallback {
|
|
SUM_DISTANCE = MAX_DISTANCE * 2 + 1;
|
|
SUM_DISTANCE = MAX_DISTANCE * 2 + 1;
|
|
List<String> resultList = null;
|
|
List<String> resultList = null;
|
|
Collections.sort(levelList);
|
|
Collections.sort(levelList);
|
|
|
|
+ LEVELS = new char[levelList.size()];
|
|
for (int i = 0; i < levelList.size(); i++) {
|
|
for (int i = 0; i < levelList.size(); i++) {
|
|
LEVELS[i] = levelList.get(i).charAt(0);
|
|
LEVELS[i] = levelList.get(i).charAt(0);
|
|
}
|
|
}
|