Allow access to remove negative cache entries. Useful when adding resources

to the classloader.
This commit is contained in:
Christian 2013-09-25 10:48:54 -04:00
parent 9b583972ac
commit da7b564c26

View file

@ -381,4 +381,9 @@ public class LaunchClassLoader extends URLClassLoader {
}
}
}
public void clearNegativeEntries(Set<String> entriesToClear)
{
negativeResourceCache.removeAll(entriesToClear);
}
}