mirror of
https://github.com/Grasscutters/Grasscutter
synced 2025-09-03 07:35:11 +00: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