File tree Expand file tree Collapse file tree 2 files changed +17
-14
lines changed
testlib/src/main/resources/java/formatannotations Expand file tree Collapse file tree 2 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,12 @@ class FormatAnnotationsAccessModifiers {
2727 return null;
2828 }
2929
30+ @Deprecated
31+ @Nullable
32+ public Object myMethod4a() {
33+ return null;
34+ }
35+
3036 @Override
3137 @Nullable
3238 @Deprecated
Original file line number Diff line number Diff line change @@ -10,26 +10,27 @@ class FormatAnnotationsAccessModifiers {
1010 return null;
1111 }
1212
13- @Nullable
14- public Object myMethod2() {
13+ @Nullable public Object myMethod2() {
1514 return null;
1615 }
1716
18- @Nullable
19- public
17+ @Nullable public
2018 Object myMethod3() {
2119 return null;
2220 }
2321
24- @Nullable
25- @Deprecated
22+ @Nullable @Deprecated
2623 public Object myMethod4() {
2724 return null;
2825 }
2926
30- @Override
31- @Nullable
3227 @Deprecated
28+ @Nullable public Object myMethod4a() {
29+ return null;
30+ }
31+
32+ @Override
33+ @Nullable @Deprecated
3334 public Object myMethod5() {
3435 return null;
3536 }
@@ -40,18 +41,14 @@ class FormatAnnotationsAccessModifiers {
4041}
4142
4243@Deprecated
43- @Interned
44- @MustCall("close")
45- @SuppressWarnings
44+ @Interned @MustCall("close") @SuppressWarnings
4645public class MyClass3 {
4746 // No body
4847}
4948
5049public
5150@Deprecated
5251@SuppressWarnings
53- @Interned
54- @MustCall("close")
55- class MyClass4 {
52+ @Interned @MustCall("close") class MyClass4 {
5653 // No body
5754}
You can’t perform that action at this time.
0 commit comments