This commit is contained in:
Rasika Perera 2017-07-07 18:37:24 +05:30
commit a8e9bd81c1

View File

@ -241,11 +241,13 @@ public class DeviceTypePluginDAOImpl implements PluginDAO{
}
private String getPropertString(List<Device.Property> properties, String propertyName) {
if (properties != null) {
for (Device.Property property : properties) {
if (property.getName() != null && property.getName().equals(propertyName)) {
return property.getValue();
}
}
}
return null;
}