don't suggest primitive type names inside annotation in method parameter list (IDEA-25149)

This commit is contained in:
peter
2010-04-12 17:51:37 +04:00
parent 7ea5d5f4c0
commit 8db6de961d
5 changed files with 20 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
public class Foo {
Object foo(@Deprecated(Foo.c<caret>)){ }
}

View File

@@ -0,0 +1,3 @@
public class Foo {
Object foo(@Deprecated(Foo.class<caret>)){ }
}