Description
In PackageResourceGuard
protected boolean acceptAbsolutePath(String path)
{
...
if ("html".equals(ext) &&
getClass().getClassLoader().getResource(path.replaceAll(".html", ".class")) != null)
return acceptExtension(ext);
}
String.replaceAll(regex, replacement). I guess it must be replaceAll("
.html", ".class") instead.