Skip to content

Commit

Permalink
Removed extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed Sep 29, 2016
1 parent fca863f commit 4d579f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<>();
Expand Down
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/BaseNoGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ static public String getBoardManagerLink() {
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;
Expand Down
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void openFolder(File file) throws Exception {

static {
loadLib(new File(BaseNoGui.getContentFile("lib"), System.mapLibraryName("listSerialsj")));
};
}

private static void loadLib(File lib) {
try {
Expand Down
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/SketchFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static interface TextStorage {

/** 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
Expand Down

0 comments on commit 4d579f7

Please sign in to comment.