1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-20 21:01:25 +03:00

Fixed verbose upload. Removed unused platform.txt params.

This commit is contained in:
Cristian Maglie
2012-11-04 01:05:54 +01:00
parent a64d58fbdb
commit d5e7d0dabd
3 changed files with 5 additions and 16 deletions

View File

@ -102,11 +102,11 @@ public abstract class Uploader implements MessageConsumer {
int result=0; // pre-initialized to quiet a bogus warning from jikes
try {
if (verbose || Preferences.getBoolean("upload.verbose")) {
for(int i = 0; i < commandArray.length; i++) {
System.out.print(commandArray[i] + " ");
}
System.out.println();
if (verbose || Preferences.getBoolean("upload.verbose")) {
}
Process process = Runtime.getRuntime().exec(commandArray);
new MessageSiphon(process.getInputStream(), this);