create subclass: for private inner classes create implementation in the same containing class (IDEA-18954); IDEA-76741

This commit is contained in:
anna
2012-01-13 21:21:38 +01:00
parent 6671490aa8
commit 4fe09fbead
4 changed files with 106 additions and 49 deletions

View File

@@ -0,0 +1,6 @@
public class Test {
private interface Inner {}
public class InnerImpl implements Inner {
}
}

View File

@@ -0,0 +1,3 @@
public class Test {
private interface Inner {}
}