Skip to content

Commit 732614a

Browse files
committed
No need for blank Javadoc lines between Javadoc @ tags
1 parent 4615864 commit 732614a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+0
-76
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
*
4141
* @param <K> the type of the keys in the map
4242
* @param <V> the type of the values in the map
43-
*
4443
* @since 3.0
4544
*/
4645
public interface BidiMap<K, V> extends IterableMap<K, V> {
@@ -57,7 +56,6 @@ public interface BidiMap<K, V> extends IterableMap<K, V> {
5756
*
5857
* @param value the value to find the key for
5958
* @return the mapped key, or {@code null} if not found
60-
*
6159
* @throws ClassCastException (optional) if the map limits the type of the
6260
* value and the specified value is inappropriate
6361
* @throws NullPointerException (optional) if the map limits the values to
@@ -101,7 +99,6 @@ public interface BidiMap<K, V> extends IterableMap<K, V> {
10199
* @param key the key to store
102100
* @param value the value to store
103101
* @return the previous value mapped to this key
104-
*
105102
* @throws UnsupportedOperationException if the {@code put} method is not supported
106103
* @throws ClassCastException (optional) if the map limits the type of the
107104
* value and the specified value is inappropriate
@@ -126,7 +123,6 @@ public interface BidiMap<K, V> extends IterableMap<K, V> {
126123
*
127124
* @param value the value to find the key-value pair for
128125
* @return the key that was removed, {@code null} if nothing removed
129-
*
130126
* @throws ClassCastException (optional) if the map limits the type of the
131127
* value and the specified value is inappropriate
132128
* @throws NullPointerException (optional) if the map limits the values to

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
*
2929
* @see CollectionUtils#isFull
3030
* @see CollectionUtils#maxSize
31-
*
3231
* @param <E> the type of elements in this collection
3332
* @since 3.0
3433
*/

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

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ public class ClosureUtils {
6666
* The transformer's result will be ignored.
6767
*
6868
* @see org.apache.commons.collections4.functors.TransformerClosure
69-
*
7069
* @param <E> the type that the closure acts on
7170
* @param transformer the transformer to run each time in the closure, null means nop
7271
* @return the closure
@@ -80,7 +79,6 @@ public static <E> Closure<E> asClosure(final Transformer<? super E, ?> transform
8079
* result into the next closure.
8180
*
8281
* @see org.apache.commons.collections4.functors.ChainedClosure
83-
*
8482
* @param <E> the type that the closure acts on
8583
* @param closures an array of closures to chain
8684
* @return the {@code chained} closure
@@ -97,7 +95,6 @@ public static <E> Closure<E> chainedClosure(final Closure<? super E>... closures
9795
* method on the collection.
9896
*
9997
* @see org.apache.commons.collections4.functors.ChainedClosure
100-
*
10198
* @param <E> the type that the closure acts on
10299
* @param closures a collection of closures to chain
103100
* @return the {@code chained} closure
@@ -113,7 +110,6 @@ public static <E> Closure<E> chainedClosure(final Collection<? extends Closure<?
113110
* until the predicate returns false.
114111
*
115112
* @see org.apache.commons.collections4.functors.WhileClosure
116-
*
117113
* @param <E> the type that the closure acts on
118114
* @param closure the closure to call repeatedly, not null
119115
* @param predicate the predicate to use as an end of loop test, not null
@@ -143,7 +139,6 @@ public static <E> Closure<E> exceptionClosure() {
143139
* A null closure or zero count returns the {@code NOPClosure}.
144140
*
145141
* @see org.apache.commons.collections4.functors.ForClosure
146-
*
147142
* @param <E> the type that the closure acts on
148143
* @param count the number of times to loop
149144
* @param closure the closure to call repeatedly
@@ -158,7 +153,6 @@ public static <E> Closure<E> forClosure(final int count, final Closure<? super E
158153
* result of the specified predicate.
159154
*
160155
* @see org.apache.commons.collections4.functors.IfClosure
161-
*
162156
* @param <E> the type that the closure acts on
163157
* @param predicate the validating predicate
164158
* @param trueClosure the closure called if the predicate is true
@@ -176,7 +170,6 @@ public static <E> Closure<E> ifClosure(final Predicate<? super E> predicate,
176170
* on the specified predicate.
177171
*
178172
* @see org.apache.commons.collections4.functors.IfClosure
179-
*
180173
* @param <E> the type that the closure acts on
181174
* @param predicate the predicate to switch on
182175
* @param trueClosure the closure called if the predicate is true
@@ -196,7 +189,6 @@ public static <E> Closure<E> ifClosure(final Predicate<? super E> predicate,
196189
*
197190
* @see org.apache.commons.collections4.functors.InvokerTransformer
198191
* @see org.apache.commons.collections4.functors.TransformerClosure
199-
*
200192
* @param <E> the type that the closure acts on
201193
* @param methodName the name of the method
202194
* @return the {@code invoker} closure
@@ -213,7 +205,6 @@ public static <E> Closure<E> invokerClosure(final String methodName) {
213205
*
214206
* @see org.apache.commons.collections4.functors.InvokerTransformer
215207
* @see org.apache.commons.collections4.functors.TransformerClosure
216-
*
217208
* @param <E> the type that the closure acts on
218209
* @param methodName the name of the method
219210
* @param paramTypes the parameter types
@@ -233,7 +224,6 @@ public static <E> Closure<E> invokerClosure(final String methodName, final Class
233224
* This could be useful during testing as a placeholder.
234225
*
235226
* @see org.apache.commons.collections4.functors.NOPClosure
236-
*
237227
* @param <E> the type that the closure acts on
238228
* @return the closure
239229
*/
@@ -254,7 +244,6 @@ public static <E> Closure<E> nopClosure() {
254244
* </p>
255245
*
256246
* @see org.apache.commons.collections4.functors.SwitchClosure
257-
*
258247
* @param <E> the type that the closure acts on
259248
* @param predicatesAndClosures a map of predicates to closures
260249
* @return the {@code switch} closure
@@ -276,7 +265,6 @@ public static <E> Closure<E> switchClosure(final Map<Predicate<E>, Closure<E>> p
276265
* </p>
277266
*
278267
* @see org.apache.commons.collections4.functors.SwitchClosure
279-
*
280268
* @param <E> the type that the closure acts on
281269
* @param predicates an array of predicates to check, not null
282270
* @param closures an array of closures to call, not null
@@ -301,7 +289,6 @@ public static <E> Closure<E> switchClosure(final Predicate<? super E>[] predicat
301289
* </p>
302290
*
303291
* @see org.apache.commons.collections4.functors.SwitchClosure
304-
*
305292
* @param <E> the type that the closure acts on
306293
* @param predicates an array of predicates to check, not null
307294
* @param closures an array of closures to call, not null
@@ -328,7 +315,6 @@ public static <E> Closure<E> switchClosure(final Predicate<? super E>[] predicat
328315
* </p>
329316
*
330317
* @see org.apache.commons.collections4.functors.SwitchClosure
331-
*
332318
* @param <E> the type that the closure acts on
333319
* @param objectsAndClosures a map of objects to closures
334320
* @return the closure
@@ -356,7 +342,6 @@ public static <E> Closure<E> switchMapClosure(final Map<? extends E, Closure<E>>
356342
* predicate returns false.
357343
*
358344
* @see org.apache.commons.collections4.functors.WhileClosure
359-
*
360345
* @param <E> the type that the closure acts on
361346
* @param predicate the predicate to use as an end of loop test, not null
362347
* @param closure the closure to call repeatedly, not null

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,6 @@ public static int maxSize(final Collection<? extends Object> collection) {
14121412
* </p>
14131413
*
14141414
* @see PermutationIterator
1415-
*
14161415
* @param <E> the element type
14171416
* @param collection the collection to create permutations for, must not be null
14181417
* @return an unordered collection of all permutations of the input collection

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public class FactoryUtils {
5151
* use the prototype factory.
5252
*
5353
* @see org.apache.commons.collections4.functors.ConstantFactory
54-
*
5554
* @param <T> the type that the factory creates
5655
* @param constantToReturn the constant object to return each time in the factory
5756
* @return the {@code constant} factory.
@@ -65,7 +64,6 @@ public static <T> Factory<T> constantFactory(final T constantToReturn) {
6564
* This could be useful during testing as a placeholder.
6665
*
6766
* @see org.apache.commons.collections4.functors.ExceptionFactory
68-
*
6967
* @param <T> the type that the factory creates
7068
* @return the factory
7169
*/
@@ -78,7 +76,6 @@ public static <T> Factory<T> exceptionFactory() {
7876
* a no-args constructor.
7977
*
8078
* @see org.apache.commons.collections4.functors.InstantiateFactory
81-
*
8279
* @param <T> the type that the factory creates
8380
* @param classToInstantiate the Class to instantiate each time in the factory
8481
* @return the {@code reflection} factory
@@ -93,7 +90,6 @@ public static <T> Factory<T> instantiateFactory(final Class<T> classToInstantiat
9390
* the arguments specified to this method.
9491
*
9592
* @see org.apache.commons.collections4.functors.InstantiateFactory
96-
*
9793
* @param <T> the type that the factory creates
9894
* @param classToInstantiate the Class to instantiate each time in the factory
9995
* @param paramTypes parameter types for the constructor, can be null
@@ -132,7 +128,6 @@ public static <T> Factory<T> nullFactory() {
132128
* </ul>
133129
*
134130
* @see org.apache.commons.collections4.functors.PrototypeFactory
135-
*
136131
* @param <T> the type that the factory creates
137132
* @param prototype the object to clone each time in the factory
138133
* @return the {@code prototype} factory, or a {@link ConstantFactory#NULL_INSTANCE} if

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*
2525
* @param <K> the type of the keys in this map
2626
* @param <V> the type of the values in this map
27-
*
2827
* @since 4.0
2928
* @see Put
3029
*/

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
*
2222
* @param <K> the type of the keys in this map
2323
* @param <V> the type of the values in this map
24-
*
2524
* @since 4.0
2625
* @see Put
2726
*/

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
*
3737
* @param <K> the type of the keys in this map
3838
* @param <V> the type of the values in this map
39-
*
4039
* @since 3.0
4140
*/
4241
public interface IterableMap<K, V> extends Map<K, V>, Put<K, V>, IterableGet<K, V> {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*
2424
* @param <K> the type of the keys in the map
2525
* @param <V> the type of the values in the map
26-
*
2726
* @since 4.0
2827
*/
2928
public interface IterableSortedMap<K, V> extends SortedMap<K, V>, OrderedMap<K, V> {

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ public static <E> List<E> retainAll(final Collection<E> collection, final Collec
606606
* @param predicate the predicate to use, may be null
607607
* @return the elements matching the predicate (new list)
608608
* @throws NullPointerException if the input list is null
609-
*
610609
* @since 4.0
611610
* @see CollectionUtils#select(Iterable, Predicate)
612611
*/
@@ -627,7 +626,6 @@ public static <E> List<E> select(final Collection<? extends E> inputCollection,
627626
* @param predicate the predicate to use, may be null
628627
* @return the elements <strong>not</strong> matching the predicate (new list)
629628
* @throws NullPointerException if the input collection is null
630-
*
631629
* @since 4.0
632630
* @see CollectionUtils#selectRejected(Iterable, Predicate)
633631
*/

0 commit comments

Comments
 (0)