Skip to content

Commit 22458dc

Browse files
committed
Fix empty Javadoc lines for Qulice compliance
1 parent 1e4a256 commit 22458dc

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

src/main/java/org/cactoos/text/Joined.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
/**
1313
* Join a Text.
14-
*
14+
*
1515
* <p>This class joins multiple {@link Text} instances into a single
1616
* text using a specified delimiter between elements.</p>
1717
* <p>There is no thread-safety guarantee.
@@ -27,7 +27,7 @@
2727
* );
2828
* joined.asString(); // "apple, banana, orange"
2929
* }</pre>
30-
*
30+
*
3131
* @since 0.9
3232
*/
3333
public final class Joined extends TextEnvelope {

src/main/java/org/cactoos/text/Lowered.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
import org.cactoos.Text;
99

1010
/**
11-
*
11+
*
1212
* Text in lower case.
13-
*
13+
*
1414
* <p>This class converts the original text to lower case
1515
* using a specified {@link Locale}. If no locale is provided,
1616
* {@link Locale#ENGLISH} is used by default.</p>
17-
*
17+
*
1818
* <p>There is no thread-safety guarantee.
1919
*
2020
* <p>Example:</p>

src/main/java/org/cactoos/text/Mapped.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
*
1313
* <p>This class applies a {@link Func} to the original text lazily,
1414
* i.e., the function is executed only when {@link Text#asString()} is called.</p>
15-
*
15+
*
1616
* <p>Example usage:</p>
1717
*
1818
* <pre>{@code
1919
* Text original = new TextOf("hello");
2020
* Text upper = new Mapped(str -> str.toUpperCase(), original);
2121
* upper.asString(); // "HELLO"
2222
* }</pre>
23-
*
23+
*
2424
* @since 0.47
2525
*/
2626
public final class Mapped extends TextEnvelope {

src/main/java/org/cactoos/text/Trimmed.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88

99
/**
1010
* Text without control characters (char &lt;= 32) from both ends.
11-
*
11+
*
1212
* <p>This class trims the original text using
1313
* {@link String#trim()}, removing whitespace characters
1414
* from both the beginning and the end of the text.</p>
1515
*
1616
* <p>
1717
* There is no thread-safety guarantee.
18-
*
18+
*
1919
*<p>Example:</p>
2020
* <pre>{@code
2121
* Text text = new Trimmed(new TextOf(" hello world "));
2222
* text.asString(); // "hello world"
2323
* }</pre>
24-
*
24+
*
2525
* @since 0.1
2626
*/
2727
public final class Trimmed extends TextEnvelope {
2828

2929
/**
3030
* Ctor.
31-
*
31+
*
3232
* Creates a trimmed text from the given
3333
* @param text The text
3434
*/

src/main/java/org/cactoos/text/Upper.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
* Text text1 = new Upper(new TextOf("hello"));
2020
* text1.asString(); // "HELLO
2121
* }</pre>
22-
*
22+
*
2323
* @since 0.1
2424
*/
2525
public final class Upper extends TextEnvelope {
2626

2727
/**
2828
* Ctor.
29-
*
29+
*
3030
* <p>Creates an upper-case text from a character sequence
3131
* using {@link Locale#ENGLISH}.</p>
32-
*
32+
*
3333
* @param text The text
3434
*/
3535
public Upper(final CharSequence text) {
@@ -48,10 +48,10 @@ public Upper(final Text text) {
4848

4949
/**
5050
* Ctor.
51-
*
51+
*
5252
* <p>Creates an upper-case text from a {@link Text}
5353
* using the given {@link Locale}.</p>
54-
*
54+
*
5555
* @param text The text
5656
* @param locale Locale
5757
*/

0 commit comments

Comments
 (0)