删除无用代码

back_recharge
jiahuiwen 2021-11-05 19:22:22 +08:00
parent 38c39eeea4
commit b9d44ccd3e
1 changed files with 0 additions and 23 deletions

View File

@ -24,11 +24,6 @@ public class GlobalSystemControl {
private int questId;//本服开启的问卷id
private HashMap<Integer,Integer> activityOpenValue= new HashMap<>();
//山河社稷图首次通关记录
private Map<Integer, ArenaRecord> hardStageFirstRecord = new HashMap<>();
//山河社稷图最低通关记录
private Map<Integer, ArenaRecord> hardStageMinForceRecord = new HashMap<>();
@Transient
private boolean dirty = false;
@ -118,22 +113,4 @@ public class GlobalSystemControl {
return stringsList;
}
public Map<Integer, ArenaRecord> getHardStageFirstRecord() {
return hardStageFirstRecord;
}
public void addHardStageFirstRecord(int nodeId,ArenaRecord record){
this.dirty = true;
hardStageFirstRecord.put(nodeId ,record);
}
public Map<Integer, ArenaRecord> getHardStageMinForceRecord() {
return hardStageMinForceRecord;
}
public void addHardStageMinForceRecord(int nodeId,ArenaRecord record){
this.dirty = true;
hardStageMinForceRecord.put(nodeId ,record);
}
}