mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
live templates: incorrect adding generic parameter IDEA-134434
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Example {
|
||||
<T> void test(T[] foo) {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
foo.for<caret>
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
class Example {
|
||||
<T> void test(T[] foo) {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
for (T t : foo) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user