Fixed compiler unchecked warning

This commit is contained in:
Niclas Finne 2012-06-08 17:06:29 +02:00
parent 4861aadb94
commit 46d1367566

View file

@ -105,8 +105,8 @@ public class MoteInterfaceHandler {
*/
public <N extends MoteInterface> N getInterfaceOfType(Class<N> interfaceType) {
for (MoteInterface intf : moteInterfaces) {
if (interfaceType.isAssignableFrom(intf.getClass())) {
return (N) intf;
if (interfaceType.isInstance(intf)) {
return interfaceType.cast(intf);
}
}