mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
fix modifiers for created inner classes (IDEA-167750)
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ public interface I {
|
||||
Collection c = new MyCollection(1, "test");
|
||||
}
|
||||
|
||||
static class MyCollection implements Collection {
|
||||
class MyCollection implements Collection {
|
||||
public MyCollection(int i, String test) {
|
||||
}
|
||||
}
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Create inner class 'Param'" "true"
|
||||
import java.util.*;
|
||||
|
||||
public interface I {
|
||||
void foo(Param p);
|
||||
|
||||
class Param {
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Create inner class 'Param'" "true"
|
||||
import java.util.*;
|
||||
|
||||
public interface I {
|
||||
void foo(Par<caret>am p);
|
||||
}
|
||||
Reference in New Issue
Block a user