Skip to content

Commit 4d579f7

Browse files
committed
Removed extra semicolon
1 parent fca863f commit 4d579f7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

arduino-core/src/cc/arduino/packages/discoverers/SerialDiscovery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class SerialDiscovery implements Discovery {
4141

4242
private Timer serialBoardsListerTimer;
4343
private final List<BoardPort> serialBoardPorts;
44-
private SerialBoardsLister serialBoardsLister = new SerialBoardsLister(this);;
44+
private SerialBoardsLister serialBoardsLister = new SerialBoardsLister(this);
4545

4646
public SerialDiscovery() {
4747
this.serialBoardPorts = new LinkedList<>();

arduino-core/src/processing/app/BaseNoGui.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ static public String getBoardManagerLink() {
406406
return boardManagerLink;
407407
}
408408

409-
protected static PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(BaseNoGui.class);;
409+
protected static PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(BaseNoGui.class);
410410

411411
public static void setBoardManagerLink(String temp) {
412412
boardManagerLink = temp;

arduino-core/src/processing/app/Platform.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void openFolder(File file) throws Exception {
155155

156156
static {
157157
loadLib(new File(BaseNoGui.getContentFile("lib"), System.mapLibraryName("listSerialsj")));
158-
};
158+
}
159159

160160
private static void loadLib(File lib) {
161161
try {

arduino-core/src/processing/app/SketchFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static interface TextStorage {
7272

7373
/** Clear the isModified() result value */
7474
public void clearModified();
75-
};
75+
}
7676

7777
/**
7878
* A storage for this file's text. This can be set by a GUI, so we can

0 commit comments

Comments
 (0)