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:00 +04:00
parent f0fb771128
commit 7764913b9a

View File

@@ -1,7 +1,7 @@
interface Intf<T> {
T get();
X<T> method(T value);
T get();
}
class Impl<V> implements Intf<V> {