Skip to content

Commit 0235e89

Browse files
committed
fix(tooltip): privatised the stringEquals of the tooltipmodule
1 parent b4bfc71 commit 0235e89

File tree

1 file changed

+1
-1
lines changed
  • engine/modules/tooltip/src/main/java/com/codingame/gameengine/module/tooltip

1 file changed

+1
-1
lines changed

engine/modules/tooltip/src/main/java/com/codingame/gameengine/module/tooltip/TooltipModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private void sendFrameData() {
5050
newRegistration.clear();
5151
}
5252

53-
boolean stringEquals(String a, String b) {
53+
private boolean stringEquals(String a, String b) {
5454
if (a == b) {
5555
return true;
5656
} else if (a != null && a.equals(b)) {

0 commit comments

Comments
 (0)