Fix atomic cache issues

This commit is contained in:
cyberpwn 2021-08-25 02:42:50 -04:00
parent 04a54dbc2a
commit c1b04ace78

View File

@ -80,6 +80,6 @@ public class AtomicCache<T> {
lock.unlock();
return t.get();
return this.t.get();
}
}