2
0
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:
Breno A.
2024-06-09 09:06:12 -03:00
parent 0161b4d73d
commit 427a1cf5f5

View File

@@ -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;
}
}