1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-20 14:54:31 +01:00

initialize the error string as empty (not null)

This commit is contained in:
Martino Facchin 2016-02-15 17:10:46 +01:00
parent 84ebc68af7
commit 0584b2c2bd

View File

@ -85,7 +85,7 @@ public abstract class Uploader implements MessageConsumer {
}
private void init(boolean nup) {
this.error = null;
this.error = "";
this.notFoundError = false;
this.noUploadPort = nup;
}