fixed type annotations restoring (IDEA-124889)

This commit is contained in:
Anna Kozlova
2014-05-15 16:12:38 +04:00
parent ef7c8b971a
commit 2b8c3330c5
4 changed files with 48 additions and 1 deletions
@@ -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, "");
}
}
@@ -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>");
}
}