删除无用代码
parent
38c39eeea4
commit
b9d44ccd3e
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue