Skip to content

Commit

Permalink
Fix some javadocs warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Sep 29, 2015
1 parent 2400c7a commit c69c78b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
14 changes: 9 additions & 5 deletions jansi/src/main/java/org/fusesource/jansi/Ansi.java
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,11 @@ public Ansi format(String pattern, Object... args) {
/**
* Uses the {@link AnsiRenderer}
* to generate the ANSI escape sequences for the supplied text.
*
*
* @param text text
* @return this
*
* @since 1.1
* @param text
*/
public Ansi render(final String text) {
a(AnsiRenderer.render(text));
Expand All @@ -560,10 +562,12 @@ public Ansi render(final String text) {
/**
* String formats and renders the supplied arguments. Uses the {@link AnsiRenderer}
* to generate the ANSI escape sequences.
*
*
* @param text format
* @param args arguments
* @return this
*
* @since 1.1
* @param text
* @param args
*/
public Ansi render(final String text, Object... args) {
a(String.format(AnsiRenderer.render(text), args));
Expand Down
1 change: 0 additions & 1 deletion jansi/src/main/java/org/fusesource/jansi/AnsiRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
/**
* Renders ANSI color escape-codes in strings by parsing out some special syntax to pick up the correct fluff to use.
*
* <p/>
* The syntax for embedded ANSI codes is:
*
* <pre>
Expand Down

0 comments on commit c69c78b

Please sign in to comment.