Skip to content

Commit

Permalink
Use PreferenceData.setBoolean() where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed Nov 25, 2016
1 parent df1841f commit 611ed08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/processing/app/Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,9 @@ public Base(String[] args) throws Exception {
} else if (parser.isVerifyOrUploadMode()) {
splash.close();
// Set verbosity for command line build
PreferencesData.set("build.verbose", "" + parser.isDoVerboseBuild());
PreferencesData.set("upload.verbose", "" + parser.isDoVerboseUpload());
PreferencesData.set("runtime.preserve.temp.files", Boolean.toString(parser.isPreserveTempFiles()));
PreferencesData.setBoolean("build.verbose", parser.isDoVerboseBuild());
PreferencesData.setBoolean("upload.verbose", parser.isDoVerboseUpload());
PreferencesData.setBoolean("runtime.preserve.temp.files", parser.isPreserveTempFiles());

// Make sure these verbosity preferences are only for the
// current session
Expand Down

0 comments on commit 611ed08

Please sign in to comment.