Fix initial exceptions

This commit is contained in:
DanLT 2021-09-03 11:34:09 -08:00
parent d25299e1ba
commit 075882b7b0

View File

@ -291,6 +291,14 @@ public class ResourceLoader<T extends IrisRegistrant> {
lock.unlock(); lock.unlock();
if(folderCache == null)
{
synchronized (this)
{
return getFolderCache();
}
}
return folderCache; return folderCache;
} }