mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-10 03:55:10 +00:00
Remove trailing spaces.
This commit is contained in:
parent
86cf126f13
commit
90c736c3a0
@ -45,7 +45,7 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
|
||||
|
||||
/**
|
||||
* Returns the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
*
|
||||
* @return the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
* @since 3.10.
|
||||
|
@ -46,7 +46,7 @@ public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
|
||||
|
||||
/**
|
||||
* Returns the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
*
|
||||
* @return the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
* @since 3.10.
|
||||
|
@ -40,7 +40,7 @@ public class MutablePair<L, R> extends Pair<L, R> {
|
||||
|
||||
/**
|
||||
* Returns the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
*
|
||||
* @return the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
* @since 3.10.
|
||||
|
@ -38,10 +38,10 @@ public class MutableTriple<L, M, R> extends Triple<L, M, R> {
|
||||
* @since 3.10.
|
||||
*/
|
||||
public static final MutableTriple<?, ?, ?>[] EMPTY_ARRAY = new MutableTriple[0];
|
||||
|
||||
|
||||
/**
|
||||
* Returns the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
*
|
||||
* @return the empty array singleton that can be assigned without compiler warning.
|
||||
*
|
||||
* @since 3.10.
|
||||
|
@ -45,13 +45,13 @@ public void testEmptyArrayLength() {
|
||||
final ImmutablePair<Integer, String>[] empty = (ImmutablePair<Integer, String>[]) ImmutablePair.EMPTY_ARRAY;
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testEmptyArrayGenerics() {
|
||||
final ImmutablePair<Integer, String>[] empty = ImmutablePair.emptyArray();
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testBasic() {
|
||||
final ImmutablePair<Integer, String> pair = new ImmutablePair<>(0, "foo");
|
||||
|
@ -45,13 +45,13 @@ public void testEmptyArrayLength() {
|
||||
final ImmutableTriple<Integer, String, Boolean>[] empty = (ImmutableTriple<Integer, String, Boolean>[]) ImmutableTriple.EMPTY_ARRAY;
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testEmptyArrayGenerics() {
|
||||
final ImmutableTriple<Integer, String, Boolean>[] empty = ImmutableTriple.emptyArray();
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testBasic() {
|
||||
final ImmutableTriple<Integer, String, Boolean> triple = new ImmutableTriple<>(0, "foo", Boolean.TRUE);
|
||||
|
@ -38,13 +38,13 @@ public void testEmptyArrayLength() {
|
||||
final MutablePair<Integer, String>[] empty = (MutablePair<Integer, String>[]) MutablePair.EMPTY_ARRAY;
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testEmptyArrayGenerics() {
|
||||
final MutablePair<Integer, String>[] empty = MutablePair.emptyArray();
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testBasic() {
|
||||
final MutablePair<Integer, String> pair = new MutablePair<>(0, "foo");
|
||||
|
@ -38,13 +38,13 @@ public void testEmptyArrayLength() {
|
||||
final MutableTriple<Integer, String, Boolean>[] empty = (MutableTriple<Integer, String, Boolean>[]) MutableTriple.EMPTY_ARRAY;
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testEmptyArrayGenerics() {
|
||||
final MutableTriple<Integer, String, Boolean>[] empty = MutableTriple.emptyArray();
|
||||
assertEquals(0, empty.length);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testBasic() {
|
||||
final MutableTriple<Integer, String, Boolean> triple = new MutableTriple<>(0, "foo", Boolean.FALSE);
|
||||
|
Loading…
x
Reference in New Issue
Block a user