samuelcampos/usbdrivedetector

Bug in AbstractStorageDeviceDetector

Closed this issue · 1 comments

Hello

in the Function addUSBDevice is a try catch block missing

try {
USBStorageDevice device = new USBStorageDevice(root);
listDevices.add(device);
} catch (IllegalArgumentException e) {
logger.debug("Could not add Device - IllegalArgumentException: "
+ e.getMessage());
}

Thank you. I've updated that method with that try catch block.