mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +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:
@@ -2,13 +2,13 @@ class A {
|
||||
A(int i) {
|
||||
}
|
||||
|
||||
A method() {
|
||||
return newA(10);
|
||||
}
|
||||
|
||||
public static A newA(int i) {
|
||||
return new A(i);
|
||||
}
|
||||
|
||||
A method() {
|
||||
return newA(10);
|
||||
}
|
||||
}
|
||||
|
||||
class B extends A {
|
||||
|
||||
Reference in New Issue
Block a user