generate equals/hashCode: sort primitive fields up and leave natural ordering (IDEA-21339)

This commit is contained in:
Anna Kozlova
2015-01-13 16:18:27 +01:00
parent 22ceca17df
commit cd2d451fba
13 changed files with 47 additions and 49 deletions
@@ -10,8 +10,8 @@ public class Test {
final Test test = (Test) o;
if (f != test.f) return false;
if (h != test.h) return false;
if (j != test.j) return false;
if (h != test.h) return false;
return true;
}