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 3d88433 commit e0b43efCopy full SHA for e0b43ef
luceedebug/src/main/java/luceedebug/StrongString.java
@@ -13,7 +13,7 @@ public int hashCode() {
13
14
@Override
15
public boolean equals(Object other) {
16
- return v.equals(other);
+ return (other instanceof StrongString) && v.equals(((StrongString)other).v);
17
}
18
19
public static class RawIdePath extends StrongString {
0 commit comments