mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
get rid of warnings for (currently) unused variables
This commit is contained in:
@@ -34,7 +34,7 @@ public class ImportStatement {
|
||||
private static final String importKw = "import";
|
||||
private static final String staticKw = "static";
|
||||
|
||||
private boolean isClass;
|
||||
// private boolean isClass;
|
||||
private boolean isStarred;
|
||||
private boolean isStatic;
|
||||
|
||||
@@ -64,7 +64,7 @@ public class ImportStatement {
|
||||
int lastDot = cls.lastIndexOf('.');
|
||||
is.className = lastDot >= 0 ? cls.substring(lastDot+1) : cls;
|
||||
is.packageName = lastDot >= 0 ? cls.substring(0, lastDot) : "";
|
||||
is.isClass = true;
|
||||
// is.isClass = true;
|
||||
return is;
|
||||
}
|
||||
|
||||
|
||||
@@ -203,7 +203,7 @@ public class PDEX {
|
||||
final JTree tree;
|
||||
|
||||
final JavaEditor editor;
|
||||
final PreprocessingService pps;
|
||||
// final PreprocessingService pps;
|
||||
|
||||
final Consumer<PreprocessedSketch> reloadListener;
|
||||
|
||||
@@ -212,7 +212,7 @@ public class PDEX {
|
||||
|
||||
ShowUsage(JavaEditor editor, PreprocessingService pps) {
|
||||
this.editor = editor;
|
||||
this.pps = pps;
|
||||
// this.pps = pps;
|
||||
|
||||
reloadListener = this::reloadShowUsage;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user