mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-31 20:52:13 +01:00
Removed extra semicolon
This commit is contained in:
parent
fca863f325
commit
4d579f7652
@ -41,7 +41,7 @@ public class SerialDiscovery implements Discovery {
|
||||
|
||||
private Timer serialBoardsListerTimer;
|
||||
private final List<BoardPort> serialBoardPorts;
|
||||
private SerialBoardsLister serialBoardsLister = new SerialBoardsLister(this);;
|
||||
private SerialBoardsLister serialBoardsLister = new SerialBoardsLister(this);
|
||||
|
||||
public SerialDiscovery() {
|
||||
this.serialBoardPorts = new LinkedList<>();
|
||||
|
@ -406,7 +406,7 @@ public class BaseNoGui {
|
||||
return boardManagerLink;
|
||||
}
|
||||
|
||||
protected static PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(BaseNoGui.class);;
|
||||
protected static PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(BaseNoGui.class);
|
||||
|
||||
public static void setBoardManagerLink(String temp) {
|
||||
boardManagerLink = temp;
|
||||
|
@ -155,7 +155,7 @@ public class Platform {
|
||||
|
||||
static {
|
||||
loadLib(new File(BaseNoGui.getContentFile("lib"), System.mapLibraryName("listSerialsj")));
|
||||
};
|
||||
}
|
||||
|
||||
private static void loadLib(File lib) {
|
||||
try {
|
||||
|
@ -72,7 +72,7 @@ public class SketchFile {
|
||||
|
||||
/** Clear the isModified() result value */
|
||||
public void clearModified();
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* A storage for this file's text. This can be set by a GUI, so we can
|
||||
|
Loading…
x
Reference in New Issue
Block a user