IDEA-4384 Refactorings should obey "align when multiline"

Test fixes
This commit is contained in:
Denis Zhdanov
2010-10-11 15:08:07 +04:00
parent 3a02f43fb5
commit 8b7ad968fa
7 changed files with 7 additions and 7 deletions
@@ -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));
}
}
@@ -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);
}
}
@@ -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);
}
}