IDEA-108141 reused code of FixDocCommentAction

This commit is contained in:
Dmitry Batkovich
2014-06-03 15:06:11 +04:00
parent d03289c9e5
commit 6a73a7151e
15 changed files with 213 additions and 5 deletions
@@ -0,0 +1,12 @@
// "Add Javadoc" "true"
class A {
/**
* @param s
* @return
* @throws Exception
*/
public int foo(final String s) throws Exception {
}
}