Skip to content

Commit e1da3a2

Browse files
committed
Simplify Javadoc
1 parent fa8a90c commit e1da3a2

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/main/java/org/apache/commons/lang3/tuple/MutablePair.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ public static <L, R> MutablePair<L, R>[] emptyArray() {
5959
/**
6060
* Creates a mutable pair of two objects inferring the generic types.
6161
*
62-
* <p>This factory allows the pair to be created using inference to
63-
* obtain the generic types.</p>
64-
*
6562
* @param <L> the left element type.
6663
* @param <R> the right element type.
6764
* @param left the left element, may be null.
@@ -75,9 +72,6 @@ public static <L, R> MutablePair<L, R> of(final L left, final R right) {
7572
/**
7673
* Creates a mutable pair from a map entry.
7774
*
78-
* <p>This factory allows the pair to be created using inference to
79-
* obtain the generic types.</p>
80-
*
8175
* @param <L> the left element type.
8276
* @param <R> the right element type.
8377
* @param pair the existing map entry.
@@ -99,9 +93,6 @@ public static <L, R> MutablePair<L, R> of(final Map.Entry<L, R> pair) {
9993
/**
10094
* Creates a mutable pair of two non-null objects inferring the generic types.
10195
*
102-
* <p>This factory allows the pair to be created using inference to
103-
* obtain the generic types.</p>
104-
*
10596
* @param <L> the left element type.
10697
* @param <R> the right element type.
10798
* @param left the left element, may not be null.

0 commit comments

Comments
 (0)