16 lines
490 B
Java
16 lines
490 B
Java
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() {
|
|
}
|
|
}
|