Avoid using the deprecated empty finalize() method in java.desktop

This rule flags the use of the finalize() method in the java.awt.color.ICC_Profile , java.awt.image.ColorModel and java.awt.image.IndexColorModel classes as it is no longer available in Java SE 18 or later. They were deprecated in Java SE 9 and were marked "forRemoval = true" since Java 16. The finalize method previously did nothing.

This rule has a automated fix that removes the finalize() method in the java.awt.color.ICC_Profile , java.awt.image.ColorModel , and java.awt.image.IndexColorModel classes. Copy the custom configuration to your application build file to enable the fix automation.

For more information see JDK-8273103.