what-the-bank/sources/com/google/android/gms/common/util/SharedPreferencesUtils.java

16 lines
490 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.gms.common.util;
import android.content.Context;
import android.content.SharedPreferences;
/* loaded from: classes2.dex */
public class SharedPreferencesUtils {
@Deprecated
public static void publishWorldReadableSharedPreferences(Context context, SharedPreferences.Editor editor, String str) {
throw new IllegalStateException("world-readable shared preferences should only be used by apk");
}
private SharedPreferencesUtils() {
}
}