[java-highlighting] StaticInInnerJava16: remove redundant comments

GitOrigin-RevId: 5ac0bb4da8e0d8e62b2143180b719f20a76bc17d
This commit is contained in:
Tagir Valeev
2020-12-30 12:20:16 +07:00
committed by intellij-monorepo-bot
parent 79ca94dd91
commit b6c02d3fd2

View File

@@ -1,4 +1,4 @@
//statics in inner
//statics in inner -- in Java 16 allowed everywhere
public class a {
static final Number x = null;
@@ -18,7 +18,6 @@ public class a {
static int a_ic_m(String s) { return 0; }
// static initializer
static {}
}
@@ -26,7 +25,6 @@ public class a {
interface ii {
static int i = 9;
void f();
// since nested interface is implicitly static:
static class ii_c {}
}