From 0123d5a96bc66dcc77aa98b048ba32593b3e852b Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 5 Jul 2021 08:36:12 -0400 Subject: [PATCH] ignore static final warnings out of concern for method signature change --- core/src/processing/core/PApplet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index a38e9e0f0..25ac52bd9 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -81,7 +81,7 @@ import processing.opengl.*; * project of our (tiny) size, we should be focusing on the future, rather * than working around legacy Java code. */ -@SuppressWarnings("unused") +@SuppressWarnings({"unused", "FinalStaticMethod"}) public class PApplet implements PConstants { //public class PApplet extends PSketch { // possible in the next alpha /** Full name of the Java version (i.e. 1.5.0_11). */