Checkstyle and trailing spaces.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1083195 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oliver Heger 2011-03-19 15:41:46 +00:00
parent 8ec9dee44f
commit cf38b99ba8
1 changed files with 17 additions and 12 deletions

View File

@ -18,12 +18,12 @@ package org.apache.commons.lang3;
/** /**
* Immutable concrete manifestation of the {@link Pair} type. * Immutable concrete manifestation of the {@link Pair} type.
* *
* <p>#ThreadSafe# if the objects are threadsafe</p> * <p>#ThreadSafe# if the objects are threadsafe</p>
* @since Lang 3.0 * @since Lang 3.0
* @author Matt Benson * @author Matt Benson
* @version $Id$ * @version $Id$
* *
* @param <L> left generic type * @param <L> left generic type
* @param <R> right generic type * @param <R> right generic type
*/ */
@ -38,9 +38,9 @@ public class ImmutablePair<L, R> extends Pair<L, R> {
/** /**
* Create a new ImmutablePair instance. * Create a new ImmutablePair instance.
* *
* @param left * @param left the left value
* @param right * @param right the right value
*/ */
public ImmutablePair(L left, R right) { public ImmutablePair(L left, R right) {
super(); super();
@ -65,20 +65,25 @@ public class ImmutablePair<L, R> extends Pair<L, R> {
} }
/** /**
* {@link java.util.Map.Entry#setValue(Object)} implementation. * {@link java.util.Map.Entry#setValue(Object)} implementation. Because this
* @throws UnsupportedOperationException * class is immutable the {@code setValue()} operation is not supported.
* Therefore always an exception is thrown.
*
* @param value the value to set
* @throws UnsupportedOperationException as this operation is not supported
*/ */
public R setValue(R arg0) { public R setValue(R value) {
throw new UnsupportedOperationException(); throw new UnsupportedOperationException();
} }
/** /**
* Static fluent creation method for an {@link ImmutablePair}<L, R>: * Static fluent creation method for an {@link ImmutablePair}<L, R>:
* <code>ImmutablePair.of(left, right)</code> * <code>ImmutablePair.of(left, right)</code>
* @param <L> *
* @param <R> * @param <L> the left generic type
* @param left * @param <R> the right generic type
* @param right * @param left the let value
* @param right the right value
* @return ImmutablePair<L, R>(left, right) * @return ImmutablePair<L, R>(left, right)
*/ */
public static <L, R> ImmutablePair<L, R> of(L left, R right) { public static <L, R> ImmutablePair<L, R> of(L left, R right) {