mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
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:
@@ -1,12 +1,12 @@
|
||||
class Test {
|
||||
public static final String S = "";
|
||||
|
||||
static void foo(){
|
||||
System.out.println(S);
|
||||
}
|
||||
|
||||
void bar() {
|
||||
System.out.println(Test.S);
|
||||
Test.foo();
|
||||
}
|
||||
|
||||
static void foo(){
|
||||
System.out.println(S);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user