[java] allows @author tag on method Javadoc (IDEA-159020)

This commit is contained in:
Roman Shevchenko
2016-12-02 20:29:33 +01:00
parent 56d5aed0e2
commit 9aef1ccba3
3 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
/**
* @author me
*/
class Foo {
/**
* @author me again
*/
void m() { }
}