You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
api-impl: add misc stubs
This commit is contained in:
@@ -250,6 +250,7 @@ public final class SharedPreferencesImpl implements SharedPreferences {
|
||||
}
|
||||
public boolean getBoolean(String key, boolean defValue) {
|
||||
synchronized (this) {
|
||||
System.out.println("android.app.SharedPreferencesImpl.getBoolean("+key+", "+defValue+")");
|
||||
awaitLoadedLocked();
|
||||
Boolean v = (Boolean)mMap.get(key);
|
||||
return v != null ? v : defValue;
|
||||
|
||||
Reference in New Issue
Block a user