aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/commons/lang3/tuple/MutablePair.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/commons/lang3/tuple/MutablePair.java')
-rw-r--r--src/org/apache/commons/lang3/tuple/MutablePair.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/org/apache/commons/lang3/tuple/MutablePair.java b/src/org/apache/commons/lang3/tuple/MutablePair.java
index df5c53f..d35d452 100644
--- a/src/org/apache/commons/lang3/tuple/MutablePair.java
+++ b/src/org/apache/commons/lang3/tuple/MutablePair.java
@@ -18,7 +18,7 @@ package org.apache.commons.lang3.tuple;
/**
* <p>A mutable pair consisting of two {@code Object} elements.</p>
- *
+ *
* <p>Not #ThreadSafe#</p>
*
* @param <L> the left element type
@@ -39,10 +39,10 @@ public class MutablePair<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
@@ -83,7 +83,7 @@ public class MutablePair<L, R> extends Pair<L, R> {
/**
* Sets the left element of the pair.
- *
+ *
* @param left the new value of the left element, may be null
*/
public void setLeft(L left) {
@@ -100,7 +100,7 @@ public class MutablePair<L, R> extends Pair<L, R> {
/**
* Sets the right element of the pair.
- *
+ *
* @param right the new value of the right element, may be null
*/
public void setRight(R right) {
@@ -110,7 +110,7 @@ public class MutablePair<L, R> extends Pair<L, R> {
/**
* Sets the {@code Map.Entry} value.
* This sets the right element of the pair.
- *
+ *
* @param value the right value to set, not null
* @return the old value for the right element
*/