File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
java/src/processing/mode/java/pdex Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public class ImportStatement {
3434 private static final String importKw = "import" ;
3535 private static final String staticKw = "static" ;
3636
37- private boolean isClass ;
37+ // private boolean isClass;
3838 private boolean isStarred ;
3939 private boolean isStatic ;
4040
@@ -64,7 +64,7 @@ public static ImportStatement singleClass(String cls) {
6464 int lastDot = cls .lastIndexOf ('.' );
6565 is .className = lastDot >= 0 ? cls .substring (lastDot +1 ) : cls ;
6666 is .packageName = lastDot >= 0 ? cls .substring (0 , lastDot ) : "" ;
67- is .isClass = true ;
67+ // is.isClass = true;
6868 return is ;
6969 }
7070
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ private static class ShowUsage {
203203 final JTree tree ;
204204
205205 final JavaEditor editor ;
206- final PreprocessingService pps ;
206+ // final PreprocessingService pps;
207207
208208 final Consumer <PreprocessedSketch > reloadListener ;
209209
@@ -212,7 +212,7 @@ private static class ShowUsage {
212212
213213 ShowUsage (JavaEditor editor , PreprocessingService pps ) {
214214 this .editor = editor ;
215- this .pps = pps ;
215+ // this.pps = pps;
216216
217217 reloadListener = this ::reloadShowUsage ;
218218
You can’t perform that action at this time.
0 commit comments