Skip to content

Commit 5f38daa

Browse files
cmagliefacchinm
authored andcommitted
Minor fix in indentation and style
1 parent 00cdd80 commit 5f38daa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public void stop() {
163163

164164
@Override
165165
public List<BoardPort> listDiscoveredBoards() {
166-
synchronized (reachableBoardPorts) {
166+
synchronized (reachableBoardPorts) {
167167
return getBoardPortsDiscoveredWithJmDNS();
168168
}
169169
}
@@ -177,8 +177,8 @@ public List<BoardPort> listDiscoveredBoards(boolean complete) {
177177

178178
public void setReachableBoardPorts(List<BoardPort> newReachableBoardPorts) {
179179
synchronized (reachableBoardPorts) {
180-
this.reachableBoardPorts.clear();
181-
this.reachableBoardPorts.addAll(newReachableBoardPorts);
180+
reachableBoardPorts.clear();
181+
reachableBoardPorts.addAll(newReachableBoardPorts);
182182
}
183183
}
184184

0 commit comments

Comments
 (0)