void mousePressed() { String savePath = selectOutput(); // Opens file chooser if (savePath == null) { // If a file was not selected, end program.. println("No output file was selected, ending program..."); exit(); } else { save(savePath); } }
void mousePressed() { String savePath = selectOutput(); // Opens file chooser if (savePath == null) { // If a file was not selected, end program.. println("No output file was selected, ending program..."); exit(); } else { save(savePath); } }