mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 18:40:49 +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…
x
Reference in New Issue
Block a user