[Android] Get rid of a typecast om ConfigFile.java.

This commit is contained in:
Lioncash 2013-10-08 19:25:40 -04:00
parent fee10d3d76
commit f1b6f95c40

View File

@ -90,9 +90,9 @@ public final class ConfigFile {
}
public String getString(String key) {
Object ret = map.get(key);
String ret = map.get(key);
if (ret != null)
return (String) ret;
return ret;
else
return null;
}