Skip to content

Commit e4462c1

Browse files
committed
fix javadocs
1 parent 3282578 commit e4462c1

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

src/main/java/info/unterrainer/commons/cliutils/consoleprogressbar/ConsoleProgressBar.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
* You may specify if your console supports control-characters (like
2121
* standard-out) or not (like the Eclipse console-implementation (before Mars
2222
* (4.5)) or a pipe to a file) if you'd like to use one of the two standard
23-
* {@link DrawableComponent} implementations.<br/>
23+
* {@link DrawableComponent} implementations.<br>
2424
* You also may implement your own {@link DrawableComponent} and use that in
2525
* your applications.
2626
* <p>
2727
* Default values are:
28-
* <table>
28+
* <table summary="default values">
2929
* <tr>
3030
* <td><b>width</b></td>
3131
* <td>50</td>

src/main/java/info/unterrainer/commons/cliutils/consoleprogressbar/drawablecomponents/DrawableComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
public interface DrawableComponent {
88

99
/**
10-
* Draws the graphical component of the progress bar.<br/>
10+
* Draws the graphical component of the progress bar.<br>
1111
* No need to flush the stream after writing. This is done after calling this
1212
* method.
1313
*
@@ -24,7 +24,7 @@ public interface DrawableComponent {
2424

2525
/**
2626
* Removes the graphical component of the progress bar from the output
27-
* stream.<br/>
27+
* stream.<br>
2828
* No need to flush the stream after writing. This is done after calling this
2929
* method.
3030
*

src/main/java/info/unterrainer/commons/cliutils/consoleprogressbar/drawablecomponents/PercentGauge.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
* context since it will be drawn more often but the value won't change.
3434
* <p>
3535
* You may specify any other begin- , end- , percent- or empty-character you
36-
* like.<br />
36+
* like.<br>
3737
* This bar is only a good choice if your console supports control characters
3838
* since for this representation you have to to clear all characters on each
3939
* redraw using '\b' (backspace).
4040
* <p>
41-
* <table>
41+
* <table summary="default values">
4242
* <tr>
4343
* <td><b>prefix</b></td>
4444
* <td>"file a: "</td>

src/main/java/info/unterrainer/commons/cliutils/consoleprogressbar/drawablecomponents/ProgressBar.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
* </pre>
2929
*
3030
* You may specify any other begin- , end- , full- or empty-character you
31-
* like.<br />
31+
* like.<br>
3232
* This bar is only a good choice if your console supports control characters
3333
* since for this representation you have to to clear all characters on each
3434
* redraw using '\b' (backspace).
3535
* <p>
36-
* <table>
36+
* <table summary="default values">
3737
* <tr>
3838
* <td><b>prefix</b></td>
3939
* <td>"file a: "</td>

src/main/java/info/unterrainer/commons/cliutils/consoleprogressbar/drawablecomponents/SimpleInsertBar.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
* }
3131
* </pre>
3232
*
33-
* ... with an ever growing number of '#' characters.</br/>
33+
* ... with an ever growing number of '#' characters.<br>
3434
* You may specify any other begin- , end- , full- or legendFill-character you
35-
* like. <br />
35+
* like. <br>
3636
* This bar is always working. Even if your console doesn't support control
3737
* characters like the Eclipse console-implementation (before Mars (4.5)) or a
3838
* pipe to a file.
3939
* <p>
4040
* Default values are:
41-
* <table>
41+
* <table summary="default values">
4242
* <tr>
4343
* <td><b>prefix</b></td>
4444
* <td>"file a: "</td>
@@ -57,7 +57,7 @@
5757
* </tr>
5858
* <tr>
5959
* <td><b>legendFill</b></td>
60-
* <td>'>'</td>
60+
* <td>'&gt;'</td>
6161
* </tr>
6262
* </table>
6363
*/

src/main/java/info/unterrainer/commons/parentpom/Information.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
public class Information {
44
public static final String name = "Parent-POM";
5-
public static final String buildTime = "2020-12-29T15:08:05Z";
5+
public static final String buildTime = "2020-12-29T18:14:54Z";
66
public static final String pomVersion = "0.2.7";
77
}

0 commit comments

Comments
 (0)