You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regression from cbc03c2
The code moved from JavadocContentAccess2 to CoreJavadocAccessImpl
changed dt/dd tags to ul/li tag pairs, and that broke javadoc alignment.
This commit restores original tag pairs used for javadoc formatting.
Fixeseclipse-jdt#1346
Regression from cbc03c2
The code moved from JavadocContentAccess2 to CoreJavadocAccessImpl
changed dt/dd tags to ul/li tag pairs, and that broke javadoc alignment.
This commit restores original tag pairs used for javadoc formatting.
Fixes#1346
Stumbled while looking at this code java doc:
FileSystems.newFileSystem((URI)null, null, null);
Javadoc looks like on 4.30:
Javadoc looks like on 4.32:
Note the missing indentation of "Parameters", "Returns" and "Throws" section headers - this makes reading complex javadoc harder as it should be.
The section headers should be aligned on left side, not on same column as the following content.
Also other headers ("Since", "See Also") are now misaligned, like on
java.util.regex.Pattern.splitAsStream(CharSequence)
:I assume all section headers are misaligned now :-(
This is a regression from #941
The text was updated successfully, but these errors were encountered: