Handle multi-line spaces and leading asterisks more correctly

This commit is contained in:
Dmitry Neverov
2017-06-08 22:29:27 +02:00
committed by Simon Ogorodnik
parent 0453c4a7bf
commit 3f104833ba
3 changed files with 61 additions and 8 deletions
+12
View File
@@ -15,5 +15,17 @@ class A {
protected/*it's protected*/ void foo(char c) { }
/**
* Method description.
* Multi-line method description.
*
*
* @param param1 param1 description
* @param param2 param2 description
*
* @param param3 param3 description
*/
public void foo(String param1, String param2, String param3) {}
public/*it's public*/ static/*and static*/ final/*and final*/ int C = 1;
}