Comment out messages from URI resolvers

This commit is contained in:
dcramer
2011-12-22 14:18:29 -06:00
parent 2dd4c25637
commit 5f38c637af
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ public class GlossaryResolver implements URIResolver {
throw new TransformerException("Can't resolve glossary link: " + href + "->" + filePath + ". Glossary missing in classpath?");
}
} else if (originalResolver != null) { // We can't resolve, maybe the next resolver in the chain can.
System.err.println("This failed to match. " + href);
//System.err.println("This failed to match. " + href);
return originalResolver.resolve(href, base);
}
return null;

View File

@@ -37,7 +37,7 @@ public class ResourceResolver implements URIResolver { //TODO: Kill this class?
throw new TransformerException("Can't resolve path: " + href + "->" + filePath + ". Resource missing in classpath?", ioe);
}
}
System.err.println("This failed to match. " + href);
//System.err.println("This failed to match. " + href);
return originalResolver.resolve(href, base);
}
}