mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-13 20:42:34 +08:00
fix: variable is assigned to itself
This commit is contained in:
@@ -10,15 +10,15 @@ public class OpenCondData {
|
||||
return condType;
|
||||
}
|
||||
|
||||
public void setCondType(String condType) {
|
||||
condType = condType;
|
||||
public void setCondType(String cType) {
|
||||
condType = cType;
|
||||
}
|
||||
|
||||
public List<Integer> getParamList() {
|
||||
return paramList;
|
||||
}
|
||||
|
||||
public void setParamList(List<Integer> paramList) {
|
||||
paramList = paramList;
|
||||
public void setParamList(List<Integer> pList) {
|
||||
paramList = pList;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user