Allow access to remove negative cache entries. Useful when adding resources
to the classloader.
This commit is contained in:
parent
9b583972ac
commit
da7b564c26
1 changed files with 5 additions and 0 deletions
|
@ -381,4 +381,9 @@ public class LaunchClassLoader extends URLClassLoader {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void clearNegativeEntries(Set<String> entriesToClear)
|
||||
{
|
||||
negativeResourceCache.removeAll(entriesToClear);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue