mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
fixed type annotations restoring (IDEA-124889)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
// "Add 'String' as 2nd parameter to method 'f'" "true"
|
||||
import java.util.List;
|
||||
public class S {
|
||||
void f(List<@Anno String> args, String s) {
|
||||
f(null, "");
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// "Add 'String' as 2nd parameter to method 'f'" "true"
|
||||
import java.util.List;
|
||||
public class S {
|
||||
void f(List<@Anno String> args) {
|
||||
f(null, "<caret>");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user