(String id)
| 329 | } |
| 330 | |
| 331 | private synchronized UsbDeviceInterface getAvailable(String id) { |
| 332 | for (UsbDeviceInterface i : interfaces) |
| 333 | if (i.isId(id)) |
| 334 | return i; |
| 335 | |
| 336 | return null; |
| 337 | } |
| 338 | |
| 339 | private synchronized void removeAvailable(UsbDevice removeddevice) { |
| 340 | Iterator<UsbDeviceInterface> iter = interfaces.iterator(); |