mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
create class from usage: do not show dialog from write action (IDEA-66872)
This commit is contained in:
@@ -3,7 +3,7 @@ public class Test {
|
||||
public static void main() {
|
||||
Collection[] cc = new MyCollection[10];
|
||||
}
|
||||
}<caret>
|
||||
}
|
||||
|
||||
public class MyCollection {
|
||||
<caret>public class MyCollection {
|
||||
}
|
||||
@@ -6,7 +6,7 @@ public class Test {
|
||||
public static void main() {
|
||||
JTable table = new JTable(new MyTableModel());
|
||||
}
|
||||
}<caret>
|
||||
}
|
||||
|
||||
public class MyTableModel implements TableModel {
|
||||
<caret>public class MyTableModel implements TableModel {
|
||||
}
|
||||
@@ -3,7 +3,7 @@ class Test {
|
||||
void foo () {
|
||||
new Generic<String> ();
|
||||
}
|
||||
}<caret>
|
||||
}
|
||||
|
||||
public class Generic<T> {
|
||||
<caret>public class Generic<T> {
|
||||
}
|
||||
Reference in New Issue
Block a user