Skip to content

Commit

Permalink
Javadoc: Remove extra "whitespace"
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Mar 25, 2023
1 parent 4907152 commit 33aad87
Show file tree
Hide file tree
Showing 29 changed files with 0 additions and 29 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/BinaryDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Defines common decoding methods for byte array decoders.
*
*/
public interface BinaryDecoder extends Decoder {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/BinaryEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Defines common encoding methods for byte array encoders.
*
*/
public interface BinaryEncoder extends Encoder {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/Decoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
* Allows a user to pass a generic Object to any Decoder implementation in the codec package.
* <p>
* One of the two interfaces at the center of the codec package.
*
*/
public interface Decoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}
* encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
*
*/
public class DecoderException extends Exception {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/Encoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
* This is the sister interface of {@link Decoder}. Every implementation of Encoder provides this
* common generic interface which allows a user to pass a generic Object to any Encoder implementation
* in the codec package.
*
*/
public interface Encoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* Thrown when there is a failure condition during the encoding process. This exception is thrown when an
* {@link Encoder} encounters an encoding specific exception such as invalid data, inability to calculate a checksum,
* characters outside of the expected range.
*
*/
public class EncoderException extends Exception {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/StringDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Defines common decoding methods for String decoders.
*
*/
public interface StringDecoder extends Decoder {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/codec/StringEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/**
* Defines common encoding methods for String encoders.
*
*/
public interface StringEncoder extends Encoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
* as Soundex.
*
* <p>This class is immutable and thread-safe.</p>
*
*/
@SuppressWarnings("rawtypes")
// TODO ought to implement Comparator<String> but that's not possible whilst maintaining binary compatibility.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
*
* @see <a href="http://drdobbs.com/184401251?pgno=2">Original Article</a>
* @see <a href="http://en.wikipedia.org/wiki/Metaphone">http://en.wikipedia.org/wiki/Metaphone</a>
*
*/
public class DoubleMetaphone implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
* If an instance of the class is shared between threads, the caller needs to ensure that suitable synchronization
* is used to ensure safe publication of the value between threads, and must not invoke {@link #setMaxCodeLen(int)}
* after initial setup.
*
*/
public class Metaphone implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* <CITE>Margaret Odell</CITE> and <CITE>Robert Russell</CITE>.
*
* <p>This class is immutable and thread-safe.</p>
*
*/
public class RefinedSoundex implements StringEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

/**
* Sanity checks for {@link CharEncoding}.
*
*/
public class CharEncodingTest {

Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/codec/CharsetsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

/**
* Sanity checks for {@link Charsets}.
*
*/
public class CharsetsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

/**
* Tests {@link DecoderException}.
*
*/
public class DecoderExceptionTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

/**
* Tests {@link EncoderException}.
*
*/
public class EncoderExceptionTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

/**
* TestCase for BinaryCodec class.
*
*/
public class BinaryCodecTest {

Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/codec/binary/HexTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

/**
* Tests {@link org.apache.commons.codec.binary.Hex}.
*
*/
public class HexTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

/**
* Tests {@link StringUtils}
*
*/
public class StringUtilsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@

/**
* Tests DigestUtils methods.
*
*/
public class DigestUtilsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

/**
* Tests HmacUtils methods.
*
*/
public class HmacUtilsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* Tests the {@code ColognePhonetic} class.
*
* <p>Keep this file in UTF-8 encoding for proper Javadoc processing.</p>
*
*/
public class ColognePhoneticTest extends StringEncoderAbstractTest<ColognePhonetic> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

/**
* Tests RefinedSoundex.
*
*/
public class RefinedSoundexTest extends StringEncoderAbstractTest<RefinedSoundex> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* Tests {@link Soundex}.
*
* <p>Keep this file in UTF-8 encoding for proper Javadoc processing.</p>
*
*/
public class SoundexTest extends StringEncoderAbstractTest<Soundex> {

Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/codec/net/BCodecTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

/**
* Quoted-printable codec test cases
*
*/
public class BCodecTest {
private static final String[] BASE64_IMPOSSIBLE_CASES = {
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/codec/net/QCodecTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

/**
* Quoted-printable codec test cases
*
*/
public class QCodecTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

/**
* Quoted-printable codec test cases
*
*/
public class QuotedPrintableCodecTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

/**
* RFC 1522 compliant codec test cases
*
*/
public class RFC1522CodecTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

/**
* URL codec test cases
*
*/
public class URLCodecTest {

Expand Down

0 comments on commit 33aad87

Please sign in to comment.