convert to instance: remove target class parameter javadoc (IDEA-78892 )

This commit is contained in:
anna
2011-12-20 21:07:02 +01:00
parent 08b12236e4
commit eaeb6d1257
5 changed files with 49 additions and 18 deletions

View File

@@ -0,0 +1,10 @@
class Test {
/**
* method description
* @param a description
*/
public static void ma<caret>in(A a) {
}
}
class A {}

View File

@@ -0,0 +1,10 @@
class Test {
}
class A {
/**
* method description
*/
public void main() {
}
}