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