aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/commons/lang3/tuple/ImmutablePair.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
commitf43c74c63c80943fcad75687121f4bd4b649c48f (patch)
tree802f93ff6914b54cdaeba0df35fc8bb7d5dd4498 /src/org/apache/commons/lang3/tuple/ImmutablePair.java
parentfeda5dd2abefe921b11e492996e9701ffdac0d4b (diff)
downloadcgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.zip
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.gz
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.bz2
Remove trailing whitespace in Javadoc strings
Diffstat (limited to 'src/org/apache/commons/lang3/tuple/ImmutablePair.java')
-rw-r--r--src/org/apache/commons/lang3/tuple/ImmutablePair.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/org/apache/commons/lang3/tuple/ImmutablePair.java b/src/org/apache/commons/lang3/tuple/ImmutablePair.java
index 61eee5b..a7bdd3e 100644
--- a/src/org/apache/commons/lang3/tuple/ImmutablePair.java
+++ b/src/org/apache/commons/lang3/tuple/ImmutablePair.java
@@ -18,12 +18,12 @@ package org.apache.commons.lang3.tuple;
/**
* <p>An immutable pair consisting of two {@code Object} elements.</p>
- *
+ *
* <p>Although the implementation is immutable, there is no restriction on the objects
* that may be stored. If mutable objects are stored in the pair, then the pair
* itself effectively becomes mutable. The class is also not {@code final}, so a subclass
* could add undesirable behaviour.</p>
- *
+ *
* <p>#ThreadSafe# if the objects are threadsafe</p>
*
* @param <L> the left element type
@@ -44,10 +44,10 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
/**
* <p>Obtains an immutable pair of from two objects inferring the generic types.</p>
- *
+ *
* <p>This factory allows the pair to be created using inference to
* obtain the generic types.</p>
- *
+ *
* @param <L> the left element type
* @param <R> the right element type
* @param left the left element, may be null
@@ -89,7 +89,7 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
/**
* <p>Throws {@code UnsupportedOperationException}.</p>
- *
+ *
* <p>This pair is immutable, so this operation is not supported.</p>
*
* @param value the value to set