9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 10:39:07 +00:00

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();
}
}