Change indentations to tab as this file use tab indentations

This commit is contained in:
charitha 2016-08-17 15:58:02 +05:30
parent 76a442e864
commit 8ba69c8b36

View File

@ -73,13 +73,13 @@ public class MobileDeviceManagementUtil {
}
private static String getPropertyValue(Device device, String property) {
if (device != null && device.getProperties() != null) {
for (Device.Property prop : device.getProperties()) {
if (property.equals(prop.getName())) {
return prop.getValue();
}
}
}
if (device != null && device.getProperties() != null) {
for (Device.Property prop : device.getProperties()) {
if (property.equals(prop.getName())) {
return prop.getValue();
}
}
}
return null;
}