We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c14f7 commit 35b1e61Copy full SHA for 35b1e61
engine/modules/toggle/src/main/java/com/codingame/gameengine/module/toggle/ToggleModule.java
@@ -37,7 +37,7 @@ public boolean equals(Toggle other) {
37
return other != null && this.state == other.state && stringEquals(this.name, other.name);
38
}
39
40
- boolean stringEquals(String a, String b) {
+ private boolean stringEquals(String a, String b) {
41
if (a == b) {
42
return true;
43
} else if (a != null && a.equals(b)) {
0 commit comments