Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
code cleanup
  • Loading branch information
JayDusara committed Apr 5, 2015
commit 50a14e75241fbc4b3a6ee03230acb37c45937534
11 changes: 5 additions & 6 deletions app/src/processing/app/Mode.java
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,7 @@ public DefaultMutableTreeNode buildSketchbookTree(){
}
return sbNode;
}

protected JFrame sketchbookFrame;

/*
Expand Down Expand Up @@ -1168,11 +1168,10 @@ public void showSketchbookFrame() {
Toolkit.setIcon(sketchbookFrame);
Toolkit.registerWindowCloseKeys(sketchbookFrame.getRootPane(),
new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
sketchbookFrame.setVisible(false);
}
});
public void actionPerformed(ActionEvent e) {
sketchbookFrame.setVisible(false);
}
});

sketchbookFrame.getContentPane().setLayout(new BorderLayout());
DefaultMutableTreeNode root = buildSketchbookTree();
Expand Down
2 changes: 1 addition & 1 deletion app/src/processing/app/Sketch.java
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ public boolean save() throws IOException {
protected boolean saveAs() throws IOException {
String newParentDir = null;
String newName = null;

final String oldName2 = folder.getName();
// TODO rewrite this to use shared version from PApplet
final String PROMPT = Language.text("save");
Expand Down
183 changes: 0 additions & 183 deletions app/src/processing/app/contrib/ProgressMonitor.java

This file was deleted.

Loading