Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36d8cd55 authored by Mark Harman's avatar Mark Harman
Browse files

Suppress warnings about field can be local.

parent ad6c866c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4318,7 +4318,7 @@ public class JavaImageFunctions {
        // bitmaps in ARGB format
        private final byte [] bitmap_in;
        private final byte [] bitmap_out;
        private final int width, height; // dimensions of bitmap_out (bitmap_in should be half the width and half the height)
        private final int width, /** @noinspection FieldCanBeLocal*/ height; // dimensions of bitmap_out (bitmap_in should be half the width and half the height)

        ExpandBitmapFullFunction(byte [] bitmap_in, byte [] bitmap_out, int width, int height) {
            this.bitmap_in = bitmap_in;
@@ -4401,7 +4401,7 @@ public class JavaImageFunctions {
        // bitmaps in ARGB format
        private final byte [] bitmap_in;
        private final byte [] bitmap_out;
        private final int width, height;
        private final int width, /** @noinspection FieldCanBeLocal*/ height;

        Blur1dXFullFunction(byte [] bitmap_in, byte [] bitmap_out, int width, int height) {
            this.bitmap_in = bitmap_in;