remove redundant line break in generated code (IDEA-189268)

This commit is contained in:
Anna.Kozlova
2018-04-03 16:53:09 +02:00
parent 29b1028c43
commit c8493f4064
3 changed files with 0 additions and 3 deletions
@@ -11,7 +11,6 @@ public int hashCode() {
#set($hasNoArrays = true)
#end
#end
#if (!$hasArrays)
return java.util.Objects.hash(##
#set($i = 0)
@@ -20,7 +20,6 @@ class A {
@Override
public int hashCode() {
int result = Objects.hash(i, s);
result = 31 * result + Arrays.hashCode(a1);
result = 31 * result + Arrays.hashCode(a2);
@@ -23,7 +23,6 @@ class A extends I {
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + Arrays.hashCode(a1);
return result;