Skip to content

Commit 7a55ebb

Browse files
committed
Simplify Javadoc
1 parent e1da3a2 commit 7a55ebb

File tree

5 files changed

+0
-42
lines changed

5 files changed

+0
-42
lines changed

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

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ public static <L, R> ImmutablePair<L, R>[] emptyArray() {
7070
/**
7171
* Creates an immutable pair of two objects inferring the generic types.
7272
*
73-
* <p>This factory allows the pair to be created using inference to
74-
* obtain the generic types.</p>
75-
*
7673
* @param <L> the left element type
7774
* @param <R> the right element type
7875
* @param left the left element, may be null
@@ -99,9 +96,6 @@ public static <L, R> ImmutablePair<L, R> nullPair() {
9996
/**
10097
* Creates an immutable pair of two objects inferring the generic types.
10198
*
102-
* <p>This factory allows the pair to be created using inference to
103-
* obtain the generic types.</p>
104-
*
10599
* @param <L> the left element type
106100
* @param <R> the right element type
107101
* @param left the left element, may be null
@@ -115,9 +109,6 @@ public static <L, R> ImmutablePair<L, R> of(final L left, final R right) {
115109
/**
116110
* Creates an immutable pair from a map entry.
117111
*
118-
* <p>This factory allows the pair to be created using inference to
119-
* obtain the generic types.</p>
120-
*
121112
* @param <L> the left element type
122113
* @param <R> the right element type
123114
* @param pair the existing map entry.
@@ -131,9 +122,6 @@ public static <L, R> ImmutablePair<L, R> of(final Map.Entry<L, R> pair) {
131122
/**
132123
* Creates an immutable pair of two non-null objects inferring the generic types.
133124
*
134-
* <p>This factory allows the pair to be created using inference to
135-
* obtain the generic types.</p>
136-
*
137125
* @param <L> the left element type
138126
* @param <R> the right element type
139127
* @param left the left element, may not be null
@@ -149,9 +137,6 @@ public static <L, R> ImmutablePair<L, R> ofNonNull(final L left, final R right)
149137
/**
150138
* Creates an immutable pair of two objects inferring the generic types.
151139
*
152-
* <p>This factory allows the pair to be created using inference to
153-
* obtain the generic types.</p>
154-
*
155140
* @param <L> the left element type
156141
* @param <R> the right element type
157142
* @param right the right element, may be null

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,6 @@ public static <L, M, R> ImmutableTriple<L, M, R> nullTriple() {
8585
/**
8686
* Creates an immutable triple of three objects inferring the generic types.
8787
*
88-
* <p>This factory allows the triple to be created using inference to
89-
* obtain the generic types.</p>
90-
*
9188
* @param <L> the left element type.
9289
* @param <M> the middle element type.
9390
* @param <R> the right element type.
@@ -103,9 +100,6 @@ public static <L, M, R> ImmutableTriple<L, M, R> of(final L left, final M middle
103100
/**
104101
* Creates an immutable triple of three non-null objects inferring the generic types.
105102
*
106-
* <p>This factory allows the triple to be created using inference to
107-
* obtain the generic types.</p>
108-
*
109103
* @param <L> the left element type.
110104
* @param <M> the middle element type.
111105
* @param <R> the right element type.

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ public static <L, M, R> MutableTriple<L, M, R>[] emptyArray() {
6060
/**
6161
* Obtains a mutable triple of three objects inferring the generic types.
6262
*
63-
* <p>This factory allows the triple to be created using inference to
64-
* obtain the generic types.</p>
65-
*
6663
* @param <L> the left element type.
6764
* @param <M> the middle element type.
6865
* @param <R> the right element type.
@@ -78,9 +75,6 @@ public static <L, M, R> MutableTriple<L, M, R> of(final L left, final M middle,
7875
/**
7976
* Obtains a mutable triple of three non-null objects inferring the generic types.
8077
*
81-
* <p>This factory allows the triple to be created using inference to
82-
* obtain the generic types.</p>
83-
*
8478
* @param <L> the left element type.
8579
* @param <M> the middle element type.
8680
* @param <R> the right element type.

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ public static <L, R> Pair<L, R>[] emptyArray() {
7070
/**
7171
* Creates an immutable pair of two objects inferring the generic types.
7272
*
73-
* <p>This factory allows the pair to be created using inference to
74-
* obtain the generic types.</p>
75-
*
7673
* @param <L> the left element type.
7774
* @param <R> the right element type.
7875
* @param left the left element, may be null.
@@ -86,9 +83,6 @@ public static <L, R> Pair<L, R> of(final L left, final R right) {
8683
/**
8784
* Creates an immutable pair from a map entry.
8885
*
89-
* <p>This factory allows the pair to be created using inference to
90-
* obtain the generic types.</p>
91-
*
9286
* @param <L> the left element type.
9387
* @param <R> the right element type.
9488
* @param pair the map entry.
@@ -102,9 +96,6 @@ public static <L, R> Pair<L, R> of(final Map.Entry<L, R> pair) {
10296
/**
10397
* Creates an immutable pair of two non-null objects inferring the generic types.
10498
*
105-
* <p>This factory allows the pair to be created using inference to
106-
* obtain the generic types.</p>
107-
*
10899
* @param <L> the left element type.
109100
* @param <R> the right element type.
110101
* @param left the left element, may not be null.

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ public static <L, M, R> Triple<L, M, R>[] emptyArray() {
6868
/**
6969
* Obtains an immutable triple of three objects inferring the generic types.
7070
*
71-
* <p>This factory allows the triple to be created using inference to
72-
* obtain the generic types.</p>
73-
*
7471
* @param <L> the left element type.
7572
* @param <M> the middle element type.
7673
* @param <R> the right element type.
@@ -86,9 +83,6 @@ public static <L, M, R> Triple<L, M, R> of(final L left, final M middle, final R
8683
/**
8784
* Obtains an immutable triple of three non-null objects inferring the generic types.
8885
*
89-
* <p>This factory allows the triple to be created using inference to
90-
* obtain the generic types.</p>
91-
*
9286
* @param <L> the left element type.
9387
* @param <M> the middle element type.
9488
* @param <R> the right element type.

0 commit comments

Comments
 (0)