IDEA-54765 Code Style -> Order of Members should have extra items for statics

Test data is corrected in order to follow new static vs instance methods ordering policy
This commit is contained in:
Denis Zhdanov
2010-05-11 15:57:42 +04:00
parent 0d546c389a
commit 6c65d9802e
@@ -1,8 +1,8 @@
class C<T> {
T get() { return null; }
void method(T value, X<T> x) {
T v = get();
System.out.println(v + " " + value);
}
T get() { return null; }
}