Skip to content

Commit

Permalink
Normalize end of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 20, 2024
1 parent 190815d commit 47c5862
Show file tree
Hide file tree
Showing 104 changed files with 0 additions and 108 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ private ArrayCountingBloomFilter(final ArrayCountingBloomFilter source) {
* Constructs an empty counting Bloom filter with the specified shape.
*
* @param shape the shape of the filter
*
*/
public ArrayCountingBloomFilter(final Shape shape) {
Objects.requireNonNull(shape, "shape");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ private void readObject(final ObjectInputStream in) throws IOException, ClassNot
/**
* Removes all the nodes from the list, storing as many as required in the
* cache for reuse.
*
*/
@Override
protected void removeAllNodes() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@

/**
* Tests the ClosureUtils class.
*
*/
public class ClosureUtilsTest {

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

/**
* Tests the org.apache.commons.collections.FactoryUtils class.
*
*/
public class FactoryUtilsTest {

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

/**
* Tests for FluentIterable.
*
*/
public class FluentIterableTest {

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

/**
* Tests for IterableUtils.
*
*/
public class IterableUtilsTest {

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

/**
* Tests for MultiMapUtils
*
*/
public class MultiMapUtilsTest {

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

/**
* Tests the PredicateUtils class.
*
*/
@SuppressWarnings("boxing")
public class PredicateUtilsTest extends AbstractPredicateTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

/**
* Tests for {@link TransformedSplitMap}
*
*/
@SuppressWarnings("boxing")
public class SplitMapUtilsTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@

/**
* Tests the TransformerUtils class.
*
*/
public class TransformerUtilsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* Abstract test class for
* {@link org.apache.commons.collections4.SortedBag SortedBag}
* methods and contracts.
*
*/
public abstract class AbstractSortedBagTest<T> extends AbstractBagTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
* <p>
* Note: This test is mainly for serialization support, the CollectionBag decorator
* is extensively used and tested in AbstractBagTest.
*
*/
public class CollectionBagTest<T> extends AbstractCollectionTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
* <p>
* Note: This test is mainly for serialization support, the CollectionSortedBag decorator
* is extensively used and tested in AbstractSortedBagTest.
*
*/
public class CollectionSortedBagTest<T> extends AbstractCollectionTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
/**
* Extension of {@link AbstractBagTest} for exercising the {@link PredicatedBag}
* implementation.
*
*/
public class PredicatedBagTest<T> extends AbstractBagTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
/**
* Extension of {@link AbstractSortedBagTest} for exercising the {@link PredicatedSortedBag}
* implementation.
*
*/
public class PredicatedSortedBagTest<T> extends AbstractSortedBagTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* Extension of {@link AbstractBagTest} for exercising the {@link SynchronizedBag}
* implementation.
*
*/
public class SynchronizedBagTest<T> extends AbstractBagTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
/**
* Extension of {@link AbstractBagTest} for exercising the {@link TransformedBag}
* implementation.
*
*/
public class TransformedBagTest<T> extends AbstractBagTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
/**
* Extension of {@link AbstractSortedBagTest} for exercising the {@link TransformedSortedBag}
* implementation.
*
*/
public class TransformedSortedBagTest<T> extends AbstractSortedBagTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableBag} implementation.
*
*/
public class UnmodifiableBagTest<E> extends AbstractBagTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableSortedBag} implementation.
*
*/
public class UnmodifiableSortedBagTest<E> extends AbstractSortedBagTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public boolean test(LayerManager lm) {
/**
* A Consumer that cleans the list based on how long each filters has been in
* the list.
*
*/
static class CleanByTime implements Consumer<LinkedList<BloomFilter>> {
long elapsedTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link CompositeCollection} implementation.
*
*/
public class CompositeCollectionTest<E> extends AbstractCollectionTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link IndexedCollection} implementation.
*
*/
@SuppressWarnings("boxing")
public class IndexedCollectionTest extends AbstractCollectionTest<String> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

/**
* Tests the PredicatedCollection.Builder class.
*
*/
public class PredicatedCollectionBuilderTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link PredicatedCollection} implementation.
*
*/
public class PredicatedCollectionTest<E> extends AbstractCollectionTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link SynchronizedCollection} implementation.
*
*/
public class SynchronizedCollectionTest<E> extends AbstractCollectionTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the {@link TransformedCollection}
* implementation.
*
*/
public class TransformedCollectionTest extends AbstractCollectionTest<Object> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableCollection} implementation.
*
*/
public class UnmodifiableCollectionTest<E> extends AbstractCollectionTest<E> {

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

/**
* Base class for tests of AnyPredicate, AllPredicate, and OnePredicate.
*
*/
public abstract class AbstractAnyAllOnePredicateTest<T> extends AbstractCompositePredicateTest<T> {

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

/**
* Base class for tests of composite predicates.
*
*/
public abstract class AbstractCompositePredicateTest<T> extends AbstractMockPredicateTest<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
/**
* Base class for tests of predicates which delegate to other predicates when evaluating an object. This class
* provides methods to create and verify mock predicates to which to delegate.
*
*/
public abstract class AbstractMockPredicateTest<T> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

/**
* Tests the org.apache.commons.collections.functors.AllPredicate class.
*
*/
@SuppressWarnings("boxing")
public class AllPredicateTest extends AbstractAnyAllOnePredicateTest<Integer> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* Concrete subclasses must provide the iterator to be tested.
* They must also specify certain details of how the iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractIteratorTest<E> extends AbstractObjectTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* Concrete subclasses must provide the list iterator to be tested.
* They must also specify certain details of how the list iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractListIteratorTest<E> extends AbstractIteratorTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
* Concrete subclasses must provide the list iterator to be tested.
* They must also specify certain details of how the list iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractMapIteratorTest<K, V> extends AbstractIteratorTest<K> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* Concrete subclasses must provide the list iterator to be tested.
* They must also specify certain details of how the list iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractOrderedMapIteratorTest<K, V> extends AbstractMapIteratorTest<K, V> {

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

/**
* Test class for PermutationIterator.
*
*/
public class PermutationIteratorTest extends AbstractIteratorTest<List<Character>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public final class ObjectToStringComparator implements Comparator<Object>, Seria

/**
* Singleton instance.
*
*/
public static final ObjectToStringComparator INSTANCE = new ObjectToStringComparator();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* a new Map.Entry of the type being tested. Subclasses must also implement
* {@link #testConstructors()} to test the constructors of the Map.Entry
* type being tested.
*
*/
public abstract class AbstractMapEntryTest<K, V> {

Expand Down Expand Up @@ -93,7 +92,6 @@ public void testAccessorsAndMutators() {

/**
* Subclasses should provide tests for their constructors.
*
*/
public abstract void testConstructors();

Expand Down Expand Up @@ -123,7 +121,6 @@ public void testEqualsAndHashCode() {
* Subclasses should override this method to test the
* desired behavior of the class with respect to
* handling of self-references.
*
*/

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

/**
* Test the DefaultKeyValue class.
*
*/
public class DefaultKeyValueTest<K, V> {

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

/**
* Test the DefaultMapEntry class.
*
*/
public class DefaultMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {

Expand All @@ -51,7 +50,6 @@ public Map.Entry<K, V> makeMapEntry(final K key, final V value) {

/**
* Subclasses should override this method.
*
*/
@Test
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

/**
* Test the TiedMapEntry class.
*
*/
public class TiedMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {

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

/**
* Test the UnmodifiableMapEntry class.
*
*/
public class UnmodifiableMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {

Expand Down Expand Up @@ -69,7 +68,6 @@ public void testAccessorsAndMutators() {

/**
* Subclasses should override this method.
*
*/
@Test
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
/**
* Extension of {@link AbstractListTest} for exercising the {@link FixedSizeList}
* implementation.
*
*/
public class FixedSizeListTest<E> extends AbstractListTest<E> {

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

/**
* Extension of {@link AbstractListTest} for exercising the {@link GrowthList}.
*
*/
public class GrowthListTest<E> extends AbstractListTest<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
/**
* Extension of {@link AbstractListTest} for exercising the
* {@link PredicatedList} implementation.
*
*/
public class PredicatedListTest<E> extends AbstractListTest<E> {

Expand Down
Loading

0 comments on commit 47c5862

Please sign in to comment.