Merge pull request #835 from geethkokila/master

Fixing the null pointer
revert-70aa11f8
Madhawa Perera 7 years ago committed by GitHub
commit 2bd79e2dc3

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

Loading…
Cancel
Save