Skip to content

Commit c1f3cb2

Browse files
committed
Javadoc
1 parent 1fba296 commit c1f3cb2

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

src/main/java/org/apache/commons/collections4/CollectionUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -736,9 +736,9 @@ public static <C> int countMatches(final Iterable<C> input, final Predicate<? su
736736
* </p>
737737
* <p>
738738
* This is equivalent to
739-
* {@code {@link #subtract subtract}({@link #union union(a,b)},{@link #intersection intersection(a,b)})}
739+
* {@code {@link #subtract subtract}({@link #union union(a, b)},{@link #intersection intersection(a, b)})}
740740
* or
741-
* {@code {@link #union union}({@link #subtract subtract(a,b)},{@link #subtract subtract(b,a)})}.
741+
* {@code {@link #union union}({@link #subtract subtract(a, b)},{@link #subtract subtract(b, a)})}.
742742
* </p>
743743
*
744744
* @param a the first collection, must not be null

src/main/java/org/apache/commons/collections4/bloomfilter/BitMapExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ long[] toArray() {
131131
* arrays reimplement this method.</em>
132132
* </p>
133133
*
134-
* @param other The other BitMapExtractor that provides the y values in the (x,y) pair.
134+
* @param other The other BitMapExtractor that provides the y values in the (x, y) pair.
135135
* @param func The function to apply.
136136
* @return A LongPredicate that tests this BitMapExtractor's bitmap values in order.
137137
*/

src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilterExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ default BloomFilter flatten() {
120120
* instances, or references to the filters in the collection.</em>
121121
* </p>
122122
*
123-
* @param other The other BloomFilterExtractor that provides the y values in the (x,y) pair.
123+
* @param other The other BloomFilterExtractor that provides the y values in the (x, y) pair.
124124
* @param func The function to apply.
125125
* @return {@code true} if the {@code func} returned {@code true} for every pair, {@code false} otherwise.
126126
*/

src/main/java/org/apache/commons/collections4/bloomfilter/CellExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ interface CellPredicate {
7070
* <li>The CellExtractor aggregates duplicate indices from the IndexExtractor.</li>
7171
* </ul>
7272
*
73-
* <p>A CellExtractor that outputs the mapping [(1,2),(2,3),(3,1)] can be created from many combinations
73+
* <p>A CellExtractor that outputs the mapping [(1, 2),(2, 3),(3, 1)] can be created from many combinations
7474
* of indices including:</p>
7575
* <pre>
7676
* [1, 1, 2, 2, 2, 3]

src/main/java/org/apache/commons/collections4/bloomfilter/LongBiPredicate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Represents a function that accepts a two long-valued argument and produces a binary result.
2121
* This is the long-consuming primitive specialization for {@code BiPredicate}.
2222
* <p>
23-
* This is a functional interface whose functional method is {@code test(long,long)}.
23+
* This is a functional interface whose functional method is {@code test(long, long)}.
2424
* </p>
2525
*
2626
* @since 4.5.0-M1

src/main/java/org/apache/commons/collections4/comparators/ComparatorChain.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class ComparatorChain<E> implements Comparator<E>, Serializable {
6666
/**
6767
* Constructs a ComparatorChain with no Comparators.
6868
* You must add at least one Comparator before calling
69-
* the compare(Object,Object) method, or an
69+
* the compare(Object, Object) method, or an
7070
* UnsupportedOperationException is thrown
7171
*/
7272
public ComparatorChain() {
@@ -182,7 +182,7 @@ private void checkLocked() {
182182

183183
/**
184184
* Perform comparisons on the Objects as per
185-
* Comparator.compare(o1,o2).
185+
* Comparator.compare(o1, o2).
186186
*
187187
* @param o1 the first object to compare
188188
* @param o2 the second object to compare

src/main/java/org/apache/commons/collections4/iterators/IteratorChain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public class IteratorChain<E> implements Iterator<E> {
6969
private Iterator<? extends E> lastUsedIterator;
7070

7171
/**
72-
* ComparatorChain is "locked" after the first time compare(Object,Object)
72+
* ComparatorChain is "locked" after the first time compare(Object, Object)
7373
* is called
7474
*/
7575
private boolean isLocked;

src/main/java/org/apache/commons/collections4/map/MultiValueMap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,9 +471,9 @@ public boolean putAll(final K key, final Collection<V> values) {
471471
* correctly handled.
472472
* <p>
473473
* If you call this method with a normal map, each entry is
474-
* added using {@code put(Object,Object)}.
474+
* added using {@code put(Object, Object)}.
475475
* If you call this method with a multi map, each entry is
476-
* added using {@code putAll(Object,Collection)}.
476+
* added using {@code putAll(Object, Collection)}.
477477
* </p>
478478
*
479479
* @param map the map to copy (either a normal or multi map)

0 commit comments

Comments
 (0)