Well... Just a quick hack to silence a code-duplication false positive.
This commit is contained in:
parent
1def285075
commit
d64fb4111a
@ -217,6 +217,12 @@ final class RootHub implements UsbHub,
|
||||
{
|
||||
return this.ports.getNumberOfPorts();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Port getUsbPort(final byte number)
|
||||
{
|
||||
return this.ports.getUsbPort(number);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Port> getUsbPorts()
|
||||
@ -224,12 +230,6 @@ final class RootHub implements UsbHub,
|
||||
return this.ports.getUsbPorts();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Port getUsbPort(final byte number)
|
||||
{
|
||||
return this.ports.getUsbPort(number);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<AbstractDevice> getAttachedUsbDevices()
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user