-
Bug
-
Resolution: Fixed
-
P4
-
9
-
b76
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8136278 | emb-9 | Ivan Gerasimov | P4 | Resolved | Fixed | team |
When producing 'method details' section, javadoc tool creates wrong indentations of second and later arguments, if the method has an annotation.
With the following class, misaligned javadoc is produced:
public class Test {
public void of1(int a, int b) {}
@Deprecated
public void of2(int a, int b) {}
}
In Lynx:
+ Method Detail
o of1
public void of1(int a,
int b)
o of2
@Deprecated
public void of2(int a,
int b)
Deprecated.
With the following class, misaligned javadoc is produced:
public class Test {
public void of1(int a, int b) {}
@Deprecated
public void of2(int a, int b) {}
}
In Lynx:
+ Method Detail
o of1
public void of1(int a,
int b)
o of2
@Deprecated
public void of2(int a,
int b)
Deprecated.
- backported by
-
JDK-8136278 Wrong indentation of arguments of annotated methods
-
- Resolved
-
- duplicates
-
JDK-8211101 Javadoc generates too much whitespace when annotations are present
-
- Closed
-
- relates to
-
JDK-8011288 Erratic/inconsistent indentation of signatures
-
- Closed
-
-
JDK-8211101 Javadoc generates too much whitespace when annotations are present
-
- Closed
-