< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/LinkInfoImpl.java

Print this page
rev 47487 : 8190822: Remove dead code that could lead to invalid HTML

*** 229,243 **** * The value of the marker #. */ public String where = ""; /** - * String style of text defined in style sheet. - */ - public String styleName = ""; - - /** * The value of the target. */ public String target = ""; public final Utils utils; /** --- 229,238 ----
*** 314,332 **** this.isStrong = strong; return this; } /** - * Set the style to be used for the link. - * @param styleName String style of text defined in style sheet. - */ - public LinkInfoImpl styleName(String styleName) { - this.styleName = styleName; - return this; - } - - /** * Set the target to be used for the link. * @param target the target name. */ public LinkInfoImpl target(String target) { this.target = target; --- 309,318 ----
*** 441,450 **** @Override public String toString() { return "LinkInfoImpl{" + "context=" + context + ", where=" + where + - ", styleName=" + styleName + ", target=" + target + super.toString() + '}'; } } --- 427,435 ----
< prev index next >