Skip to content

Commit e4bded9

Browse files
committed
Replace "This class is immutable and thread-safe." with "<p>This class is immutable and thread-safe.</p>" per Konstantin Kolinko's comment on the dev ML.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1342240 13f79535-47bb-0310-9956-ffa450edef68
1 parent aea9bad commit e4bded9

23 files changed

Lines changed: 23 additions & 23 deletions

src/main/java/org/apache/commons/codec/CharEncoding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* This perhaps would best belong in the [lang] project. Even if a similar interface is defined in [lang], it is not
4848
* foreseen that [codec] would be made to depend on [lang].
4949
*
50-
* This class is immutable and thread-safe.
50+
* <p>This class is immutable and thread-safe.</p>
5151
*
5252
* @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
5353
* @since 1.4

src/main/java/org/apache/commons/codec/Charsets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* This perhaps would best belong in the Commons Lang project. Even if a similar class is defined in Commons Lang, it is
5050
* not foreseen that Commons Codec would be made to depend on Commons Lang.
5151
*
52-
* This class is immutable and thread-safe.
52+
* <p>This class is immutable and thread-safe.</p>
5353
*
5454
* @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
5555
* @since 1.7

src/main/java/org/apache/commons/codec/StringEncoderComparator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Soundex, Metaphone, etc. This class can come in handy if one need to sort Strings by an encoded form of a name such
2525
* as Soundex.
2626
*
27-
* This class is immutable and thread-safe.
27+
* <p>This class is immutable and thread-safe.</p>
2828
*
2929
* @version $Id$
3030
*/

src/main/java/org/apache/commons/codec/binary/BinaryCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* Converts between byte arrays and strings of "0"s and "1"s.
2727
*
28-
* This class is immutable and thread-safe.
28+
* <p>This class is immutable and thread-safe.</p>
2929
*
3030
* TODO: may want to add more bit vector functions like and/or/xor/nand
3131
* TODO: also might be good to generate boolean[] from byte[] et cetera.

src/main/java/org/apache/commons/codec/binary/StringUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Converts String to and from bytes using the encodings required by the Java specification. These encodings are specified in <a
2828
* href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
2929
*
30-
* This class is immutable and thread-safe.
30+
* <p>This class is immutable and thread-safe.</p>
3131
*
3232
* @see CharEncoding
3333
* @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>

src/main/java/org/apache/commons/codec/digest/B64.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* TODO: Can Base64 be reused?
2525
*
26-
* This class is immutable and thread-safe.
26+
* <p>This class is immutable and thread-safe.</p>
2727
*
2828
* @version $Id$
2929
* @since 1.7

src/main/java/org/apache/commons/codec/digest/Crypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* See {@link #crypt(String, String)} for further details.
2525
*
26-
* This class is immutable and thread-safe.
26+
* <p>This class is immutable and thread-safe.</p>
2727
*
2828
* @version $Id$
2929
* @since 1.7

src/main/java/org/apache/commons/codec/digest/Md5Crypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* The C style comments are from the original C code, the ones with "//" from the port.
4040
* </p>
4141
*
42-
* This class is immutable and thread-safe.
42+
* <p>This class is immutable and thread-safe.</p>
4343
*
4444
* @version $Id$
4545
* @since 1.7

src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* into the Public Domain.
3535
* </p>
3636
*
37-
* This class is immutable and thread-safe.
37+
* <p>This class is immutable and thread-safe.</p>
3838
*
3939
* @version $Id$
4040
* @since 1.7

src/main/java/org/apache/commons/codec/digest/UnixCrypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* This class is slightly incompatible if the given salt contains characters
3434
* that are not part of the allowed range [a-zA-Z0-9./].
3535
*
36-
* This class is immutable and thread-safe.
36+
* <p>This class is immutable and thread-safe.</p>
3737
*
3838
* @version $Id$
3939
* @since 1.7

0 commit comments

Comments
 (0)