Skip to content

Commit 2fd51f6

Browse files
committed
Javadoc: Fix double the
1 parent 8e2297b commit 2fd51f6

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* A mutable {@code boolean} wrapper.
2727
* <p>
28-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicBoolean} class.
28+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link AtomicBoolean} class.
2929
* </p>
3030
* <p>
3131
* Note that as MutableBoolean does not extend {@link Boolean}, it is not treated by {@link String#format(String, Object...)} as a Boolean parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableByte.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A mutable {@code byte} wrapper.
2323
* <p>
24-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
24+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
2525
* </p>
2626
* <p>
2727
* Note that as MutableByte does not extend Byte, it is not treated by String.format as a Byte parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableDouble.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* A mutable {@code double} wrapper.
2424
* <p>
25-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link DoubleAccumulator} class.
25+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link DoubleAccumulator} class.
2626
* </p>
2727
* <p>
2828
* Note that as MutableDouble does not extend Double, it is not treated by String.format as a Double parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableFloat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* A mutable {@code float} wrapper.
2424
* <p>
25-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link DoubleAccumulator} class.
25+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link DoubleAccumulator} class.
2626
* </p>
2727
* <p>
2828
* Note that as MutableFloat does not extend Float, it is not treated by String.format as a Float parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableInt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A mutable {@code int} wrapper.
2323
* <p>
24-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
24+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
2525
* </p>
2626
* <p>
2727
* Note that as MutableInt does not extend {@link Integer}, it is not treated by {@link String#format(String, Object...)} as an Integer parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableLong.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A mutable {@code long} wrapper.
2323
* <p>
24-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicLong} class.
24+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link AtomicLong} class.
2525
* </p>
2626
* <p>
2727
* Note that as MutableLong does not extend {@link Long}, it is not treated by {@link String#format(String, Object...)} as a Long parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* A mutable {@link Object} wrapper.
2626
* <p>
27-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicReference} class.
27+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link AtomicReference} class.
2828
* </p>
2929
*
3030
* @param <T> the type to set and get.

src/main/java/org/apache/commons/lang3/mutable/MutableShort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A mutable {@code short} wrapper.
2323
* <p>
24-
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
24+
* This class was created before the introduction of the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
2525
* </p>
2626
* <p>
2727
* Note that as MutableShort does not extend Short, it is not treated by String.format as a Short parameter.

0 commit comments

Comments
 (0)