Skip to content

Commit 19fd94e

Browse files
committed
No need for blank Javadoc lines between Javadoc @ tags
1 parent 0290080 commit 19fd94e

15 files changed

+0
-20
lines changed

src/main/java/org/apache/commons/text/RandomStringGenerator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,6 @@ public Builder withinRange(final int minimumCodePoint, final int maximumCodePoin
303303
/**
304304
* Constructs a new builder.
305305
* @return a new builder.
306-
*
307306
* @since 1.11.0
308307
*/
309308
public static Builder builder() {

src/main/java/org/apache/commons/text/StrBuilder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,6 @@ public StrBuilder appendSeparator(final String standard, final String defaultIfE
13061306
*
13071307
* @param appendable the appendable to append data to
13081308
* @throws IOException if an I/O error occurs
1309-
*
13101309
* @see #readFrom(Readable)
13111310
*/
13121311
public void appendTo(final Appendable appendable) throws IOException {
@@ -2421,7 +2420,6 @@ public StrBuilder minimizeCapacity() {
24212420
* @param readable object to read from
24222421
* @return The number of characters read
24232422
* @throws IOException if an I/O error occurs.
2424-
*
24252423
* @see #appendTo(Appendable)
24262424
*/
24272425
public int readFrom(final Readable readable) throws IOException {

src/main/java/org/apache/commons/text/StrSubstitutor.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,6 @@ public StrMatcher getVariableSuffixMatcher() {
489489
* </pre>
490490
*
491491
* @return The substitution in variable values flag
492-
*
493492
* @since 1.2
494493
*/
495494
public boolean isDisableSubstitutionInValues() {
@@ -882,7 +881,6 @@ protected String resolveVariable(final String variableName,
882881
* Sets a flag whether substitution is done in variable values (recursive).
883882
*
884883
* @param disableSubstitutionInValues true if substitution in variable value are disabled
885-
*
886884
* @since 1.2
887885
*/
888886
public void setDisableSubstitutionInValues(final boolean disableSubstitutionInValues) {

src/main/java/org/apache/commons/text/StringEscapeUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,6 @@ public static String escapeHtml3(final String input) {
575575
*
576576
* @param input the {@code String} to escape, may be null
577577
* @return a new escaped {@code String}, {@code null} if null string input
578-
*
579578
* @see <a href="https://hotwired.lycos.com/webmonkey/reference/special_characters/">ISO Entities</a>
580579
* @see <a href="http://www.w3.org/TR/REC-html32#latin1">HTML 3.2 Character Entities for ISO Latin-1</a>
581580
* @see <a href="http://www.w3.org/TR/REC-html40/sgml/entities.html">HTML 4.0 Character entity references</a>

src/main/java/org/apache/commons/text/TextStringBuilder.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,7 +1386,6 @@ public TextStringBuilder appendSeparator(final String standard, final String def
13861386
*
13871387
* @param appendable the appendable to append data to
13881388
* @throws IOException if an I/O error occurs.
1389-
*
13901389
* @see #readFrom(Readable)
13911390
*/
13921391
public void appendTo(final Appendable appendable) throws IOException {
@@ -2595,7 +2594,6 @@ public TextStringBuilder minimizeCapacity() {
25952594
*
25962595
* @param charBuffer CharBuffer to read.
25972596
* @return The number of characters read.
2598-
*
25992597
* @see #appendTo(Appendable)
26002598
* @since 1.9
26012599
*/
@@ -2615,7 +2613,6 @@ public int readFrom(final CharBuffer charBuffer) {
26152613
* @param readable object to read from
26162614
* @return The number of characters read
26172615
* @throws IOException if an I/O error occurs.
2618-
*
26192616
* @see #appendTo(Appendable)
26202617
*/
26212618
public int readFrom(final Readable readable) throws IOException {
@@ -2645,7 +2642,6 @@ public int readFrom(final Readable readable) throws IOException {
26452642
* @param reader Reader to read.
26462643
* @return The number of characters read or -1 if we reached the end of stream.
26472644
* @throws IOException if an I/O error occurs.
2648-
*
26492645
* @see #appendTo(Appendable)
26502646
* @since 1.9
26512647
*/

src/main/java/org/apache/commons/text/diff/DeleteCommand.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
*
2929
* @see StringsComparator
3030
* @see EditScript
31-
*
3231
* @param <T> object type
3332
* @since 1.0
3433
*/

src/main/java/org/apache/commons/text/diff/EditCommand.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
*
4848
* @see StringsComparator
4949
* @see EditScript
50-
*
5150
* @param <T> object type
5251
* @since 1.0
5352
*/

src/main/java/org/apache/commons/text/diff/EditScript.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
* @see EditCommand
4242
* @see CommandVisitor
4343
* @see ReplacementsHandler
44-
*
4544
* @param <T> object type
4645
* @since 1.0
4746
*/

src/main/java/org/apache/commons/text/diff/InsertCommand.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
*
2929
* @see StringsComparator
3030
* @see EditScript
31-
*
3231
* @param <T> object type
3332
* @since 1.0
3433
*/

src/main/java/org/apache/commons/text/diff/KeepCommand.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
*
2929
* @see StringsComparator
3030
* @see EditScript
31-
*
3231
* @param <T> object type
3332
* @since 1.0
3433
*/

0 commit comments

Comments
 (0)