Bug 519783 - HTMLPrinter should migrate to StringBuilder

Missing Javadoc update

Change-Id: Idbca2de008c5acbf9666486a3a6ce5d55c103c30
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/html/HTMLPrinter.java b/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/html/HTMLPrinter.java
index f67dcf7..a138194 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/html/HTMLPrinter.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/html/HTMLPrinter.java
@@ -108,7 +108,7 @@
 	 * @return the string with escaped characters
 	 *
 	 * @see #convertToHTMLContentWithWhitespace(String) for use in browsers
-	 * @see #addPreFormatted(StringBuffer, String) for rendering with an {@link HTML2TextReader}
+	 * @see #addPreFormatted(StringBuilder, String) for rendering with an {@link HTML2TextReader}
 	 */
 	public static String convertToHTMLContent(String content) {
 		content= replace(content, '&', "&amp;"); //$NON-NLS-1$
@@ -118,16 +118,17 @@
 	}
 
 	/**
-	 * Escapes reserved HTML characters in the given string
-	 * and returns them in a way that preserves whitespace in a browser.
+	 * Escapes reserved HTML characters in the given string and returns them in a way that preserves
+	 * whitespace in a browser.
 	 * <p>
-	 * <b>Warning:</b> Whitespace will not be preserved when rendered with an {@link HTML2TextReader}
-	 * (e.g. in a {@link DefaultInformationControl} that renders simple HTML).
-
+	 * <b>Warning:</b> Whitespace will not be preserved when rendered with an
+	 * {@link HTML2TextReader} (e.g. in a {@link DefaultInformationControl} that renders simple
+	 * HTML).
+	 *
 	 * @param content the input string
 	 * @return the processed string
 	 *
-	 * @see #addPreFormatted(StringBuffer, String)
+	 * @see #addPreFormatted(StringBuilder, String)
 	 * @see #convertToHTMLContent(String)
 	 * @since 3.7
 	 */