(long[] devices, int vendorId, int productId)
| 215 | } |
| 216 | |
| 217 | static boolean exists(long[] devices, int vendorId, int productId) { |
| 218 | return Arrays.binarySearch(devices, createDevice(vendorId, productId)) >= 0; |
| 219 | } |
| 220 | |
| 221 | private static boolean isSupported(UsbDevice device) { |
| 222 | return UsbSerialDevice.isSupported(device) && |
no test coverage detected