Trim trailing spaces from Editor.java

This commit is contained in:
Flavio Monteiro 2017-09-15 14:07:28 -03:00 committed by Cristian Maglie
parent bafd66ba4f
commit 4a80f50d28
1 changed files with 28 additions and 28 deletions

View File

@ -158,7 +158,7 @@ public class Editor extends JFrame implements RunnerListener {
static volatile AbstractMonitor serialMonitor;
static AbstractMonitor serialPlotter;
final EditorHeader header;
EditorStatus status;
EditorConsole console;
@ -248,7 +248,7 @@ public class Editor extends JFrame implements RunnerListener {
//PdeKeywords keywords = new PdeKeywords();
//sketchbook = new Sketchbook(this);
buildMenuBar();
// For rev 0120, placing things inside a JPanel
@ -399,8 +399,7 @@ public class Editor extends JFrame implements RunnerListener {
statusNotice(tr("One file added to the sketch."));
} else {
statusNotice(
I18n.format(tr("{0} files added to the sketch."), successful));
statusNotice(I18n.format(tr("{0} files added to the sketch."), successful));
}
return true;
}
@ -948,14 +947,14 @@ public class Editor extends JFrame implements RunnerListener {
} finally {
if (zipFile != null) {
try {
zipFile.close();
} catch (IOException e) {
// noop
}
}
}
return null;
}
zipFile.close();
} catch (IOException e) {
// noop
}
}
}
return null;
}
public void updateKeywords(PdeKeywords keywords) {
for (EditorTab tab : tabs)
@ -2097,18 +2096,19 @@ public class Editor extends JFrame implements RunnerListener {
names[i] = portMenu.getItem(i).getText();
}
// FIXME: This is horribly unreadable
String result = (String)
JOptionPane.showInputDialog(this,
I18n.format(
tr("Serial port {0} not found.\n" +
"Retry the upload with another serial port?"),
PreferencesData.get("serial.port")
),
"Serial port not found",
JOptionPane.PLAIN_MESSAGE,
null,
names,
0);
JOptionPane.showInputDialog(this,
I18n.format(
tr("Serial port {0} not found.\n" +
"Retry the upload with another serial port?"),
PreferencesData.get("serial.port")
),
"Serial port not found",
JOptionPane.PLAIN_MESSAGE,
null,
names,
0);
if (result == null) return false;
selectSerialPort(result);
base.onBoardOrPortChange();
@ -2322,7 +2322,7 @@ public class Editor extends JFrame implements RunnerListener {
return;
}
}
if (serialMonitor != null) {
// The serial monitor already exists
@ -2352,14 +2352,14 @@ public class Editor extends JFrame implements RunnerListener {
}
serialMonitor = new MonitorFactory().newMonitor(port);
if (serialMonitor == null) {
String board = port.getPrefs().get("board");
String boardName = BaseNoGui.getPlatform().resolveDeviceByBoardID(BaseNoGui.packages, board);
statusError(I18n.format(tr("Serial monitor is not supported on network ports such as {0} for the {1} in this release"), PreferencesData.get("serial.port"), boardName));
return;
}
Base.setIcon(serialMonitor);
// If currently uploading, disable the monitor (it will be later
@ -2419,7 +2419,7 @@ public class Editor extends JFrame implements RunnerListener {
} while (serialMonitor.requiresAuthorization() && !success);
}
public void handlePlotter() {
if(serialMonitor != null) {
if(serialMonitor.isClosed()) {
@ -2429,7 +2429,7 @@ public class Editor extends JFrame implements RunnerListener {
return;
}
}
if (serialPlotter != null) {
// The serial plotter already exists