*return* the created device!

master
cpfeiffer 2016-08-18 21:29:26 +02:00
parent deeaa87df7
commit 7a16834482
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public class DeviceHelper {
}
for (DeviceCoordinator coordinator : getAllCoordinators()) {
if (coordinator.supports(candidate)) {
coordinator.createDevice(candidate);
return coordinator.createDevice(candidate);
}
}
return null;