On Tue, 22 Nov 2022 20:55:56 GMT, Kevin Rushforth <[email protected]> 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
>
> modules/javafx.graphics/src/main/java/com/sun/glass/ui/gtk/GtkMenuDelegate.java
> line 52:
>
>> 50:
>> 51: @Override
>> 52: public boolean setPixels(Pixels pixels) {
>
> Indentation was lost here.
Fixed, and also corrected the indent to be 4 instead of 3.
-------------
PR: https://git.openjdk.org/jfx/pull/960