Removed extra semicolon

This commit is contained in:
Cristian Maglie 2016-09-29 20:14:25 +02:00
parent fca863f325
commit 4d579f7652
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ public class SerialDiscovery implements Discovery {
private Timer serialBoardsListerTimer; private Timer serialBoardsListerTimer;
private final List<BoardPort> serialBoardPorts; private final List<BoardPort> serialBoardPorts;
private SerialBoardsLister serialBoardsLister = new SerialBoardsLister(this);; private SerialBoardsLister serialBoardsLister = new SerialBoardsLister(this);
public SerialDiscovery() { public SerialDiscovery() {
this.serialBoardPorts = new LinkedList<>(); this.serialBoardPorts = new LinkedList<>();

View File

@ -406,7 +406,7 @@ public class BaseNoGui {
return boardManagerLink; return boardManagerLink;
} }
protected static PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(BaseNoGui.class);; protected static PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(BaseNoGui.class);
public static void setBoardManagerLink(String temp) { public static void setBoardManagerLink(String temp) {
boardManagerLink = temp; boardManagerLink = temp;

View File

@ -155,7 +155,7 @@ public class Platform {
static { static {
loadLib(new File(BaseNoGui.getContentFile("lib"), System.mapLibraryName("listSerialsj"))); loadLib(new File(BaseNoGui.getContentFile("lib"), System.mapLibraryName("listSerialsj")));
}; }
private static void loadLib(File lib) { private static void loadLib(File lib) {
try { try {

View File

@ -72,7 +72,7 @@ public class SketchFile {
/** Clear the isModified() result value */ /** Clear the isModified() result value */
public void clearModified(); public void clearModified();
}; }
/** /**
* A storage for this file's text. This can be set by a GUI, so we can * A storage for this file's text. This can be set by a GUI, so we can