RFR: JDK-8297412: Remove easy warnings in javafx.fxml, javafx.media, javafx.swing, javafx.swt and javafx.web [v2]

Nir Lisker nlisker at openjdk.org
Tue Nov 22 18:49:24 UTC 2022


On Tue, 22 Nov 2022 16:43:06 GMT, John Hendrikx <jhendrikx at openjdk.org> wrote:

>> - Remove unsupported/unnecessary SuppressWarning annotations
>> - Remove reduntant type specifications (use diamond operator)
>> - Remove unused or duplicate imports
>> - Remove unnecessary casts (type is already correct type or can be autoboxed)
>> - Remove unnecessary semi-colons (at end of class definitions, or just repeated ones)
>> - Remove redundant super interfaces (interface that is already inherited)
>> - Remove unused type parameters
>> - Remove declared checked exceptions that are never thrown
>> - Add missing `@Override` annotations
>
> John Hendrikx has updated the pull request incrementally with one additional commit since the last revision:
> 
>   Fix warnings in fxml

modules/javafx.fxml/src/main/java/javafx/fxml/FXMLLoader.java line 1497:

> 1495:         public void processEndElement() {
> 1496:             // No-op
> 1497:         }

Why is this method added?

-------------

PR: https://git.openjdk.org/jfx/pull/958


More information about the openjfx-dev mailing list