This commit is contained in:
none 2023-03-13 10:53:57 +08:00
parent 5af91191de
commit b2db35c9be

View File

@ -15,7 +15,7 @@ public class PlayEduFContext {
public PlayEduFContext() { public PlayEduFContext() {
} }
public static void put(String key, Object val) { private static void put(String key, Object val) {
LinkedHashMap<String, Object> hashMap = THREAD_LOCAL.get(); LinkedHashMap<String, Object> hashMap = THREAD_LOCAL.get();
if (hashMap == null) { if (hashMap == null) {
hashMap = new LinkedHashMap<>(); hashMap = new LinkedHashMap<>();
@ -24,7 +24,7 @@ public class PlayEduFContext {
THREAD_LOCAL.set(hashMap); THREAD_LOCAL.set(hashMap);
} }
public static Object get(String key) { private static Object get(String key) {
return THREAD_LOCAL.get().getOrDefault(key, null); return THREAD_LOCAL.get().getOrDefault(key, null);
} }