} catch (HgRuntimeException ex) {
checkResult = new Outcome(Outcome.Kind.Failure, phaseMsg, ex);
return checkResult;
}
if (toExtract != null) {
Flags extractRevFlags = cachedManifest.flags(dataFile.getPath());
fileRevision = new HgFileRevision(repo, toExtract, extractRevFlags, dataFile.getPath());
checkResult = new Outcome(Outcome.Kind.Success, String.format("File %s, revision %s found at changeset %s", dataFile.getPath(), toExtract.shortNotation(), cset.shortNotation()));
return checkResult;
}
checkResult = new Outcome(Outcome.Kind.Success, String.format("File %s nor its origins were known at revision %s", file, cset.shortNotation()));