mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-29 19:20:48 +00:00
[Android] Get rid of a typecast om ConfigFile.java.
This commit is contained in:
parent
fee10d3d76
commit
f1b6f95c40
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user