mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-4384 Refactorings should obey "align when multiline"
Test fixes
This commit is contained in:
@@ -11,6 +11,6 @@ public class Test {
|
||||
class X {
|
||||
public int n(int a) {
|
||||
final Test test = new Test();
|
||||
return test.m(a, a*2, test.method(a*2));
|
||||
return test.m(a, a * 2, test.method(a * 2));
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -11,6 +11,6 @@ public class Test {
|
||||
class X {
|
||||
public int n(int a) {
|
||||
final Test t = new Test();
|
||||
return (new Test()).m(a, a*2, t, t.method(a*2));
|
||||
return (new Test()).m(a, a * 2, t, t.method(a * 2));
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,6 @@ public class Test {
|
||||
|
||||
class X {
|
||||
public int n(int a) {
|
||||
return (new Test()).m(a, a*2);
|
||||
return (new Test()).m(a, a * 2);
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -10,6 +10,6 @@ public class Test {
|
||||
|
||||
class X {
|
||||
public int n(int a) {
|
||||
return (new Test()).m(a, a*2, new Test());
|
||||
return (new Test()).m(a, a * 2, new Test());
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,6 @@ public class Foo {
|
||||
class Bar {
|
||||
public Foo myFoo;
|
||||
int a(int b) {
|
||||
return Foo.method(b*2);
|
||||
return Foo.method(b * 2);
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,6 @@ public class Foo {
|
||||
class Bar {
|
||||
public Foo myFoo;
|
||||
int a(int b) {
|
||||
return Foo.method(myFoo, b*2);
|
||||
return Foo.method(myFoo, b * 2);
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,6 @@ public class Foo {
|
||||
class Bar {
|
||||
public Foo myFoo;
|
||||
int a(int b) {
|
||||
return myFoo.method(b*2);
|
||||
return myFoo.method(b * 2);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user