Removed unnecessary newlines

This commit is contained in:
mharindu 2015-09-09 20:14:56 +05:30
parent 27752fe35e
commit be6b6039fa

View File

@ -26,8 +26,6 @@ import java.util.Map;
public class AndroidUtils {
public static String getDeviceProperty(Map<String, String> deviceProperties, String property) {
String deviceProperty = deviceProperties.get(property);
return deviceProperty;
return deviceProperties.get(property);
}
}