We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a4127 commit 8a63517Copy full SHA for 8a63517
src/main/java/org/usb4java/javax/AbstractDevice.java
@@ -14,6 +14,7 @@
14
import java.util.HashSet;
15
import java.util.List;
16
import java.util.Map;
17
+import java.util.Set;
18
19
import javax.usb.UsbClaimException;
20
import javax.usb.UsbConst;
@@ -70,7 +71,7 @@ abstract class AbstractDevice implements UsbDevice
70
71
private byte activeConfigurationNumber = 0;
72
73
/** The numbers of the currently claimed interface. */
- private HashSet<Byte> claimedInterfaceNumbers = new HashSet<Byte>();
74
+ private Set<Byte> claimedInterfaceNumbers = new HashSet<Byte>();
75
76
/** The port this device is connected to. */
77
private UsbPort port;
0 commit comments