mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
bit more work on threads, making sure all windows quite
This commit is contained in:
@@ -3090,6 +3090,19 @@ public class ASTGenerator {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void disposeAllWindows(){
|
||||
disposeWindow(frame2);
|
||||
disposeWindow(frameAutoComp);
|
||||
disposeWindow(frmImportSuggest);
|
||||
disposeWindow(frmOccurenceList);
|
||||
disposeWindow(frmRename);
|
||||
}
|
||||
|
||||
public static void disposeWindow(JFrame f) {
|
||||
if(f != null)
|
||||
f.dispose();
|
||||
}
|
||||
|
||||
public static final String ignoredImports[] = {
|
||||
"com.oracle.", "sun.", "sunw.", "com.sun.", "javax.", "sunw.", "org.ietf.",
|
||||
|
||||
Reference in New Issue
Block a user