anonymous->inner: do not generate public static class inside interface

This commit is contained in:
anna
2011-06-29 21:09:05 +04:00
parent 9f5becabed
commit 883073fede
5 changed files with 37 additions and 17 deletions
@@ -0,0 +1,8 @@
interface M {
Runnable r = new Runnable() {<caret>
@Override
public void run() {
}
};
}