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:34 +04:00
parent 1cd4624083
commit 0d546c389a

View File

@@ -1,8 +1,8 @@
class Test {
static int bar(){return 1;}
void foo() {
Test s = new Test();
s.bar();
}
static int bar(){return 1;}
}