36 lines
631 B
Java
36 lines
631 B
Java
package com.ubt.jimu.user.model;
|
|
|
|
import android.text.TextUtils;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class RefHolder {
|
|
private static Map<String, String> a;
|
|
private static String b;
|
|
|
|
public static void a(Map<String, String> map) {
|
|
a = map;
|
|
}
|
|
|
|
public static Map<String, String> b() {
|
|
return a;
|
|
}
|
|
|
|
public static String c() {
|
|
return b;
|
|
}
|
|
|
|
public static boolean d() {
|
|
return !TextUtils.isEmpty(b);
|
|
}
|
|
|
|
public static void a(String str) {
|
|
b = str;
|
|
}
|
|
|
|
public static void a() {
|
|
a = null;
|
|
b = null;
|
|
}
|
|
}
|