Skip to content

Commit

Permalink
Declutter: Tests don't need Javadoc @SInCE tags
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 20, 2024
1 parent 885402c commit 177fea6
Show file tree
Hide file tree
Showing 23 changed files with 0 additions and 23 deletions.
Expand Up @@ -29,7 +29,6 @@
import org.junit.jupiter.api.Test;

/**
* @since 1.15
*/
public class Base16InputStreamTest {

Expand Down
Expand Up @@ -27,7 +27,6 @@
import org.junit.jupiter.api.Test;

/**
* @since 1.15
*/
public class Base16OutputStreamTest {

Expand Down
Expand Up @@ -37,7 +37,6 @@
/**
* Test cases for Base16 class.
*
* @since 1.15
*/
public class Base16Test {

Expand Down
Expand Up @@ -21,7 +21,6 @@
* This random data was encoded by OpenSSL. Java had nothing to do with it. This data helps us test interop between
* Commons-Codec and OpenSSL.
*
* @since 1.15
*/
public class Base16TestData {

Expand Down
Expand Up @@ -22,7 +22,6 @@
* Commons-Codec and OpenSSL. Notice that OpenSSL creates 64 character lines instead of the 76 of Commons-Codec.
*
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
* @since 1.4
*/
public class Base32TestData {

Expand Down
Expand Up @@ -35,7 +35,6 @@
import org.junit.jupiter.api.Test;

/**
* @since 1.4
*/
public class Base64InputStreamTest {

Expand Down
Expand Up @@ -30,7 +30,6 @@
import org.junit.jupiter.api.Test;

/**
* @since 1.4
*/
public class Base64OutputStreamTest {

Expand Down
Expand Up @@ -22,7 +22,6 @@
* Commons-Codec and OpenSSL. Notice that OpenSSL creates 64 character lines instead of the 76 of Commons-Codec.
*
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
* @since 1.4
*/
public class Base64TestData {

Expand Down
Expand Up @@ -25,7 +25,6 @@
/**
* Data and functions common to BaseN tests.
*
* @since 1.15
*/
public class BaseNTestData {

Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/codec/cli/DigestTest.java
Expand Up @@ -24,7 +24,6 @@
/**
* Tests {@link Digest}.
*
* @since 1.17
*/
public class DigestTest {

Expand Down
Expand Up @@ -44,7 +44,6 @@
/**
* Tests {@link HmacAlgorithms}.
*
* @since 1.11
*/
public class HmacAlgorithmsTest {

Expand Down
Expand Up @@ -45,7 +45,6 @@
/**
* Tests {@link MessageDigestAlgorithms}.
*
* @since 1.11
*/
public class MessageDigestAlgorithmsTest {

Expand Down
Expand Up @@ -38,7 +38,6 @@
*
* Copied from Hadoop 2.6.3 (Renamed TestPureJavaCrc32 to PureJavaCrc32Test).
*
* @since 1.11
*/
public class PureJavaCrc32Test {

Expand Down
Expand Up @@ -27,7 +27,6 @@
/**
* Tests Caverphone1.
*
* @since 1.5
*/
public class Caverphone1Test extends AbstractStringEncoderTest<Caverphone1> {

Expand Down
Expand Up @@ -27,7 +27,6 @@
/**
* Tests Caverphone2.
*
* @since 1.5
*/
public class Caverphone2Test extends AbstractStringEncoderTest<Caverphone2> {

Expand Down
Expand Up @@ -28,7 +28,6 @@
* Keep this file in UTF-8 encoding for proper Javadoc processing.
* </p>
*
* @since 1.10
*/
public class DaitchMokotoffSoundexTest extends AbstractStringEncoderTest<DaitchMokotoffSoundex> {

Expand Down
Expand Up @@ -26,7 +26,6 @@
/**
* Tests {@link Nysiis}
*
* @since 1.7
*/
public class NysiisTest extends AbstractStringEncoderTest<Nysiis> {

Expand Down
Expand Up @@ -34,7 +34,6 @@
/**
* Tests BeiderMorseEncoder.
*
* @since 1.6
*/
public class BeiderMorseEncoderTest extends AbstractStringEncoderTest<StringEncoder> {
private static final char[] TEST_CHARS = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'o', 'u' };
Expand Down
Expand Up @@ -28,7 +28,6 @@
/**
* Tests guessLanguages API.
*
* @since 1.6
*/
public class LanguageGuessingTest {

Expand Down
Expand Up @@ -29,7 +29,6 @@
/**
* Tests PhoneticEngine and Languages.LanguageSet in ways very similar to code found in solr-3.6.0.
*
* @since 1.7
*/
public class PhoneticEngineRegressionTest {

Expand Down
Expand Up @@ -29,7 +29,6 @@
/**
* Tests PhoneticEngine.
*
* @since 1.6
*/
public class PhoneticEngineTest {

Expand Down
Expand Up @@ -25,7 +25,6 @@
/**
* Tests Rule.
*
* @since 1.6
*/
public class RuleTest {
private Rule.Phoneme[][] makePhonemes() {
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/apache/commons/codec/net/UtilsTest.java
Expand Up @@ -25,7 +25,6 @@
* Methods currently get 100%/100% line/branch code coverage from other tests classes.
* </p>
*
* @since 1.4
*/
public class UtilsTest {

Expand Down

0 comments on commit 177fea6

Please sign in to comment.