From 16d921095bdc2e93b05bf0db8beea69cacb4b18b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Boutemy?= Date: Sat, 2 Dec 2017 02:31:43 +0100 Subject: [PATCH] improved/fixed javadoc reported #86 fix after #95 PrintStream copy of OutputStream --- .../java/org/fusesource/jansi/AnsiPrintStream.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/jansi/src/main/java/org/fusesource/jansi/AnsiPrintStream.java b/jansi/src/main/java/org/fusesource/jansi/AnsiPrintStream.java index 5a4ac3bf..74119a85 100644 --- a/jansi/src/main/java/org/fusesource/jansi/AnsiPrintStream.java +++ b/jansi/src/main/java/org/fusesource/jansi/AnsiPrintStream.java @@ -25,10 +25,10 @@ * A ANSI print stream extracts ANSI escape codes written to * a print stream and calls corresponding process* methods. * - * For more information about ANSI escape codes, see: - * http://en.wikipedia.org/wiki/ANSI_escape_code + *

For more information about ANSI escape codes, see + * Wikipedia article * - * This class just filters out the escape codes so that they are not + *

This class just filters out the escape codes so that they are not * sent out to the underlying OutputStream: process* methods * are empty. Subclasses should actually perform the ANSI escape behaviors * by implementing active code in process* methods. @@ -441,15 +441,17 @@ protected void processSaveCursorPosition() throws IOException { } /** - * Process CSI s ANSI code, corresponding to IL – Insert Line + * Process CSI L ANSI code, corresponding to IL – Insert Line * @throws IOException + * @since 1.16 */ protected void processInsertLine(int optionInt) throws IOException { } /** - * Process CSI s ANSI code, corresponding to DL – Delete Line + * Process CSI M ANSI code, corresponding to DL – Delete Line * @throws IOException + * @since 1.16 */ protected void processDeleteLine(int optionInt) throws IOException { }