Remove trailing white spaces on all lines.

This commit is contained in:
Gary Gregory 2018-01-02 19:50:06 -07:00
parent c6dc370abb
commit 9e62a0e998
21 changed files with 23 additions and 23 deletions

View File

@ -24,7 +24,7 @@ import java.util.Set;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @since 4.0
* @see Put
*/

View File

@ -21,7 +21,7 @@ package org.apache.commons.collections4;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @since 4.0
* @see Put
*/

View File

@ -41,7 +41,7 @@ import java.util.Collection;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @since 2.0
* @deprecated since 4.1, use {@link MultiValuedMap} instead
*/

View File

@ -29,7 +29,7 @@ import java.util.Map;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @since 4.0
* @see Get
*/

View File

@ -36,7 +36,7 @@ import org.apache.commons.collections4.keyvalue.AbstractMapEntryDecorator;
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*
*
* @see DualHashBidiMap
* @see DualTreeBidiMap
* @since 3.0

View File

@ -38,7 +38,7 @@ import org.apache.commons.collections4.BidiMap;
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*
*
* @since 3.0
*/
public class DualHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements Serializable {

View File

@ -33,7 +33,7 @@ import org.apache.commons.collections4.BidiMap;
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*
*
* @since 4.0
*/
public class DualLinkedHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements Serializable {

View File

@ -74,7 +74,7 @@ import org.apache.commons.collections4.keyvalue.UnmodifiableMapEntry;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @since 3.0 (previously DoubleOrderedMap v2.0)
*/
public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>

View File

@ -36,7 +36,7 @@ import java.util.Comparator;
* details.
*
* @param <E> the type of objects compared by this comparator
*
*
* @since 2.0
* @see java.util.Collections#reverseOrder()
*/

View File

@ -26,7 +26,7 @@ import org.apache.commons.collections4.ComparatorUtils;
* to its {@link #compare(Object, Object) compare} method.
*
* @param <E> the type of objects compared by this comparator
*
*
* @since 2.0
* @see java.util.Collections#reverseOrder()
*/

View File

@ -31,7 +31,7 @@ import org.apache.commons.collections4.Transformer;
*
* @param <I> the input type to the transformer
* @param <O> the output type from the transformer
*
*
* @since 2.1
*
* @see org.apache.commons.collections4.Transformer

View File

@ -77,7 +77,7 @@ import org.apache.commons.collections4.keyvalue.DefaultMapEntry;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @see java.lang.ref.Reference
* @since 3.1 (extracted from ReferenceMap in 3.0)
*/

View File

@ -500,7 +500,7 @@ public class CompositeMap<K, V> extends AbstractIterableMap<K, V> implements Ser
* This interface allows definition for all of the indeterminate
* mutators in a CompositeMap, as well as providing a hook for
* callbacks on key collisions.
*
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*/

View File

@ -58,7 +58,7 @@ import org.apache.commons.collections4.functors.FactoryTransformer;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @since 3.2
* @see LazyMap
*/

View File

@ -28,7 +28,7 @@ import org.apache.commons.collections4.ResettableIterator;
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*
*
* @since 4.0
*/
public class EntrySetToMapIteratorAdapter<K, V> implements MapIterator<K, V>, ResettableIterator<K> {

View File

@ -72,7 +72,7 @@ import java.lang.ref.Reference;
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @see java.lang.ref.Reference
* @since 3.0 (previously in main package v2.1)
*/

View File

@ -67,7 +67,7 @@ import java.io.Serializable;
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*
*
* @see java.lang.ref.Reference
* @since 3.0 (previously in main package v2.1)
*/

View File

@ -40,10 +40,10 @@ import org.apache.commons.collections4.Transformer;
* <p>
* This class is Serializable from Commons Collections 3.1.
* <p>
*
*
* @param <K> the type of the keys in this map
* @param <V> the type of the values in this map
*
*
* @see org.apache.commons.collections4.splitmap.TransformedSplitMap
* @since 3.0
*/

View File

@ -34,7 +34,7 @@ import org.apache.commons.collections4.set.AbstractSetDecorator;
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*
*
* @since 3.0
*/
public final class UnmodifiableEntrySet<K, V>

View File

@ -52,7 +52,7 @@ import org.apache.commons.collections4.trie.analyzer.StringKeyAnalyzer;
* are suited only to variable length keys.
*
* @param <E> the type of the values in this map
*
*
* @see <a href="http://en.wikipedia.org/wiki/Radix_tree">Radix Tree</a>
* @see <a href="http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Tree/PATRICIA">PATRICIA</a>
* @see <a href="http://www.imperialviolet.org/binary/critbit.pdf">Crit-Bit Tree</a>

View File

@ -51,8 +51,8 @@ public class QueueUtilsTest {
} catch (final NullPointerException ex) {
// expected
}
}
}
@Test
public void testUnmodifiableQueue() {
Queue<Object> queue = QueueUtils.unmodifiableQueue(new LinkedList<>());