Intention to convert a.equals(b) to Objects.equals(a, b) (IDEA-143925)

This commit is contained in:
Dmitry Batkovich
2015-08-27 15:26:19 +03:00
parent e7a0d6bad3
commit cb8099de91
11 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
class X {
void m(X x2) {
if (equa<caret>ls(x2, x2, x2)) {
}
}
boolean equals(X x, X x2, X x3) {
return false;
}
}