(int vendorId, int productId)
| 206 | } |
| 207 | |
| 208 | static long createDevice(int vendorId, int productId) { |
| 209 | return ((long) vendorId) << 32 | (productId & 0xFFFF_FFFFL); |
| 210 | } |
| 211 | |
| 212 | static long[] createTable(long... entries) { |
| 213 | Arrays.sort(entries); |
no outgoing calls
no test coverage detected