RFR: JDK-8297412: Remove easy warnings in javafx.media, javafx.swing, javafx.swt and javafx.web
Nir Lisker
nlisker at openjdk.org
Tue Nov 22 15:39:38 UTC 2022
On Tue, 22 Nov 2022 11:13:40 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
Looks good. Warning numbers changes:
web: 1988 -> 646
swt: 58 -> 32
swing: 120 -> 101
media: 317 -> 180
I think you can add fxml to this PR as well since it's small enough.
-------------
PR: https://git.openjdk.org/jfx/pull/958
More information about the openjfx-dev
mailing list