Removed obsolete warning suppressions.
This commit is contained in:
parent
71a98a2de6
commit
ffbd846872
@ -635,7 +635,7 @@ public abstract class LibUsbDevice implements UsbDevice
|
||||
*/
|
||||
|
||||
@Override
|
||||
public final void syncSubmit(@SuppressWarnings("rawtypes") final List list)
|
||||
public final void syncSubmit(final List list)
|
||||
throws UsbException, IllegalArgumentException, UsbDisconnectedException
|
||||
{
|
||||
if (list == null)
|
||||
@ -657,7 +657,7 @@ public abstract class LibUsbDevice implements UsbDevice
|
||||
|
||||
@Override
|
||||
public final void
|
||||
asyncSubmit(@SuppressWarnings("rawtypes") final List list)
|
||||
asyncSubmit(final List list)
|
||||
throws UsbException, IllegalArgumentException,
|
||||
UsbDisconnectedException
|
||||
{
|
||||
|
||||
@ -280,7 +280,7 @@ public final class LibUsbPipe implements UsbPipe
|
||||
*/
|
||||
|
||||
@Override
|
||||
public void syncSubmit(@SuppressWarnings("rawtypes") final List list)
|
||||
public void syncSubmit(final List list)
|
||||
throws UsbException, UsbNotActiveException, UsbNotOpenException,
|
||||
IllegalArgumentException, UsbDisconnectedException
|
||||
{
|
||||
@ -297,7 +297,7 @@ public final class LibUsbPipe implements UsbPipe
|
||||
*/
|
||||
|
||||
@Override
|
||||
public void asyncSubmit(@SuppressWarnings("rawtypes") final List list)
|
||||
public void asyncSubmit(final List list)
|
||||
throws UsbException, UsbNotActiveException, UsbNotOpenException,
|
||||
IllegalArgumentException, UsbDisconnectedException
|
||||
{
|
||||
|
||||
@ -275,8 +275,7 @@ public final class VirtualRootHub implements UsbHub,
|
||||
*/
|
||||
|
||||
@Override
|
||||
public void syncSubmit(@SuppressWarnings("rawtypes") final List list)
|
||||
throws UsbException
|
||||
public void syncSubmit(final List list) throws UsbException
|
||||
{
|
||||
throw new UsbException("Can't syncSubmit on virtual device");
|
||||
}
|
||||
@ -287,8 +286,7 @@ public final class VirtualRootHub implements UsbHub,
|
||||
*/
|
||||
|
||||
@Override
|
||||
public void asyncSubmit(@SuppressWarnings("rawtypes") final List list)
|
||||
throws UsbException
|
||||
public void asyncSubmit(final List list) throws UsbException
|
||||
{
|
||||
throw new UsbException("Can't asyncSubmit on virtual device");
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user