mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
Intention to convert a.equals(b) to Objects.equals(a, b) (IDEA-143925)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user