diff options
Diffstat (limited to 'test/pretty')
-rw-r--r-- | test/pretty/resource/after/Interfaces.java | 4 | ||||
-rw-r--r-- | test/pretty/resource/before/Annotation.java | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/pretty/resource/after/Interfaces.java b/test/pretty/resource/after/Interfaces.java index c8a5cca4..c5008f2b 100644 --- a/test/pretty/resource/after/Interfaces.java +++ b/test/pretty/resource/after/Interfaces.java @@ -2,6 +2,6 @@ interface Interfaces { int x = 10; void y(); - public static final int a = 20; - public abstract void b(); + int a = 20; + void b(); } diff --git a/test/pretty/resource/before/Annotation.java b/test/pretty/resource/before/Annotation.java index edd1a5e7..24868acd 100644 --- a/test/pretty/resource/before/Annotation.java +++ b/test/pretty/resource/before/Annotation.java @@ -1,3 +1,4 @@ +//ignore @SuppressWarnings("all") class Annotation { @Override |