Skip to content

Commit 9561fea

Browse files
committedOct 6, 2021
8273102: Delete deprecated for removal the empty finalize() in java.desktop module
Reviewed-by: pbansal, aivanov, iris, prr
1 parent 9945f7a commit 9561fea

File tree

3 files changed

+0
-57
lines changed

3 files changed

+0
-57
lines changed
 

‎src/java.desktop/share/classes/java/awt/color/ICC_Profile.java

-18
Original file line numberDiff line numberDiff line change
@@ -767,24 +767,6 @@ private interface BuiltInProfile {
767767
deferralInfo = pdi;
768768
}
769769

770-
/**
771-
* Frees the resources associated with an {@code ICC_Profile} object.
772-
*
773-
* @deprecated The {@code finalize} method has been deprecated. Subclasses
774-
* that override {@code finalize} in order to perform cleanup should
775-
* be modified to use alternative cleanup mechanisms and to remove
776-
* the overriding {@code finalize} method. When overriding the
777-
* {@code finalize} method, its implementation must explicitly
778-
* ensure that {@code super.finalize()} is invoked as described in
779-
* {@link Object#finalize}. See the specification for {@link
780-
* Object#finalize()} for further information about migration
781-
* options.
782-
*/
783-
@Deprecated(since = "9", forRemoval = true)
784-
@SuppressWarnings("removal")
785-
protected void finalize() {
786-
}
787-
788770
/**
789771
* Constructs an {@code ICC_Profile} object corresponding to the data in a
790772
* byte array.

‎src/java.desktop/share/classes/java/awt/image/ColorModel.java

-20
Original file line numberDiff line numberDiff line change
@@ -1617,26 +1617,6 @@ public boolean isCompatibleSampleModel(SampleModel sm) {
16171617
("This method is not supported by this color model");
16181618
}
16191619

1620-
/**
1621-
* Disposes of system resources associated with this
1622-
* {@code ColorModel} once this {@code ColorModel} is no
1623-
* longer referenced.
1624-
*
1625-
* @deprecated The {@code finalize} method has been deprecated.
1626-
* Subclasses that override {@code finalize} in order to perform cleanup
1627-
* should be modified to use alternative cleanup mechanisms and
1628-
* to remove the overriding {@code finalize} method.
1629-
* When overriding the {@code finalize} method, its implementation must explicitly
1630-
* ensure that {@code super.finalize()} is invoked as described in {@link Object#finalize}.
1631-
* See the specification for {@link Object#finalize()} for further
1632-
* information about migration options.
1633-
*/
1634-
@Deprecated(since = "9", forRemoval = true)
1635-
@SuppressWarnings("removal")
1636-
public void finalize() {
1637-
}
1638-
1639-
16401620
/**
16411621
* Returns a {@code Raster} representing the alpha channel of an
16421622
* image, extracted from the input {@code Raster}, provided that

‎src/java.desktop/share/classes/java/awt/image/IndexColorModel.java

-19
Original file line numberDiff line numberDiff line change
@@ -1510,25 +1510,6 @@ public BigInteger getValidPixels() {
15101510
}
15111511
}
15121512

1513-
/**
1514-
* Disposes of system resources associated with this
1515-
* {@code ColorModel} once this {@code ColorModel} is no
1516-
* longer referenced.
1517-
*
1518-
* @deprecated The {@code finalize} method has been deprecated.
1519-
* Subclasses that override {@code finalize} in order to perform cleanup
1520-
* should be modified to use alternative cleanup mechanisms and
1521-
* to remove the overriding {@code finalize} method.
1522-
* When overriding the {@code finalize} method, its implementation must explicitly
1523-
* ensure that {@code super.finalize()} is invoked as described in {@link Object#finalize}.
1524-
* See the specification for {@link Object#finalize()} for further
1525-
* information about migration options.
1526-
*/
1527-
@Deprecated(since = "9", forRemoval = true)
1528-
@SuppressWarnings("removal")
1529-
public void finalize() {
1530-
}
1531-
15321513
/**
15331514
* Returns the {@code String} representation of the contents of
15341515
* this {@code ColorModel} object.

0 commit comments

Comments
 (0)