Skip to content

Commit 33aad87

Browse files
committed
Javadoc: Remove extra "whitespace"
1 parent 4907152 commit 33aad87

29 files changed

Lines changed: 0 additions & 29 deletions

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
/**
2121
* Defines common decoding methods for byte array decoders.
22-
*
2322
*/
2423
public interface BinaryDecoder extends Decoder {
2524

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
/**
2121
* Defines common encoding methods for byte array encoders.
22-
*
2322
*/
2423
public interface BinaryEncoder extends Encoder {
2524

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* Allows a user to pass a generic Object to any Decoder implementation in the codec package.
2525
* <p>
2626
* One of the two interfaces at the center of the codec package.
27-
*
2827
*/
2928
public interface Decoder {
3029

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
/**
2121
* Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}
2222
* encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
23-
*
2423
*/
2524
public class DecoderException extends Exception {
2625

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
* This is the sister interface of {@link Decoder}. Every implementation of Encoder provides this
2424
* common generic interface which allows a user to pass a generic Object to any Encoder implementation
2525
* in the codec package.
26-
*
2726
*/
2827
public interface Encoder {
2928

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* Thrown when there is a failure condition during the encoding process. This exception is thrown when an
2222
* {@link Encoder} encounters an encoding specific exception such as invalid data, inability to calculate a checksum,
2323
* characters outside of the expected range.
24-
*
2524
*/
2625
public class EncoderException extends Exception {
2726

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
/**
2121
* Defines common decoding methods for String decoders.
22-
*
2322
*/
2423
public interface StringDecoder extends Decoder {
2524

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
/**
2121
* Defines common encoding methods for String encoders.
22-
*
2322
*/
2423
public interface StringEncoder extends Encoder {
2524

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* as Soundex.
2626
*
2727
* <p>This class is immutable and thread-safe.</p>
28-
*
2928
*/
3029
@SuppressWarnings("rawtypes")
3130
// TODO ought to implement Comparator<String> but that's not possible whilst maintaining binary compatibility.

src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
*
3333
* @see <a href="http://drdobbs.com/184401251?pgno=2">Original Article</a>
3434
* @see <a href="http://en.wikipedia.org/wiki/Metaphone">http://en.wikipedia.org/wiki/Metaphone</a>
35-
*
3635
*/
3736
public class DoubleMetaphone implements StringEncoder {
3837

0 commit comments

Comments
 (0)