//
TreeLogger branch = logger.branch(TreeLogger.DEBUG,
"Loading cached compilation: " + cacheXml, null);
Compilation c = new Compilation();
c.setStrongName(strongName);
CompilationSchema schema = new CompilationSchema(c);
FileReader r = null;
Throwable caught = null;
try {
r = new FileReader(cacheXml);
ReflectiveParser.parse(logger, schema, r);