Skip to content

Commit c03a8bc

Browse files
committed
Minor fix in indentation and style
1 parent cfd3cf2 commit c03a8bc

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
@@ -162,7 +162,7 @@ public void stop() {
162162

163163
@Override
164164
public List<BoardPort> listDiscoveredBoards() {
165-
synchronized (reachableBoardPorts) {
165+
synchronized (reachableBoardPorts) {
166166
return getBoardPortsDiscoveredWithJmDNS();
167167
}
168168
}
@@ -176,8 +176,8 @@ public List<BoardPort> listDiscoveredBoards(boolean complete) {
176176

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

0 commit comments

Comments
 (0)