Skip to content

Commit dc71782

Browse files
committed
fixed iterator type to SerialPort in W_Networking.pde line 182
1 parent 376deb3 commit dc71782

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpenBCI_GUI/W_Networking.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class W_Networking extends Widget {
179179
private LinkedList<String> getCuCommPorts() {
180180
final SerialPort[] allCommPorts = SerialPort.getCommPorts();
181181
LinkedList<String> cuCommPorts = new LinkedList<String>();
182-
for (String port : allCommPorts) {
182+
for (SerialPort port : allCommPorts) {
183183
if (isMac() && port.getSystemPortName().startsWith("tty")) {
184184
continue;
185185
}

0 commit comments

Comments
 (0)