Allow extension of previously final classes ImmutablePair and

ImmutableTriple
This commit is contained in:
Gary Gregory 2022-06-02 07:18:36 -04:00
parent db4a8b47f0
commit 940b79b59c
3 changed files with 3 additions and 2 deletions

View File

@ -85,6 +85,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="fix" dev="ggregory" due-to="Steve Bosman">Increase method test coverage of MultilineRecursiveToStringStyle #899.</action>
<action type="fix" dev="ggregory" due-to="Steve Bosman">Fix unstable coverage of CharSequenceUtils tests noticed during merge of PRs 898 and 899 #901.</action>
<action type="fix" dev="aherbert" due-to="Arturo Bernal">Rewrite Conversion.binaryBeMsb0ToHexDigit to invert logic of binaryToHexDigit.</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Allow extension of previously final classes ImmutablePair and ImmutableTriple.</action>
<!-- ADD -->
<action type="add" dev="ggregory" due-to="Gary Gregory">Add EnumUtils.getEnumSystemProperty(...).</action>
<action type="add" dev="ggregory" due-to="Gary Gregory">Add TriConsumer.</action>

View File

@ -34,7 +34,7 @@ import java.util.Objects;
*
* @since 3.0
*/
public final class ImmutablePair<L, R> extends Pair<L, R> {
public class ImmutablePair<L, R> extends Pair<L, R> {
/**
* An empty array.

View File

@ -34,7 +34,7 @@ import java.util.Objects;
*
* @since 3.2
*/
public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
public class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
/**
* An empty array.