return null;
}
/** Load from META-INF in the jar file */
private static byte[] getTLDFromJars(File basedir,final String uri){
return (byte[])JarAcceptor.accept(basedir, new IJarVisitor(){
public Object visit(JarFile file, JarEntry entry) throws Exception {
if(entry.getName().endsWith(".tld")){
byte[] bytes = HTMLUtil.readStream(file.getInputStream(entry));
try {
FuzzyXMLDocument doc = new FuzzyXMLParser(false).parse(new ByteArrayInputStream(bytes));