if (file == null) {
return;
}
PrintStream out = dir.getContext().getStdout();
VltEntry e = file.getEntry();
out.printf(" Path: %s%n", dir.getContext().getCwdRelativePath(file.getPath()));
out.printf("Status: %s%n", file.getStatus().name().toLowerCase());
if (e != null) {
RepositoryAddress root = dir.getContext().getMountpoint();
RepositoryAddress addr = root.resolve(e.getAggregatePath());
addr = addr.resolve(e.getRepoRelPath());
out.printf(" URL: %s%n", addr.toString());
print(out, " Work", e.work());
print(out, " Base", e.base());
print(out, " Mine", e.mine());
print(out, "Theirs", e.theirs());
}
out.println();
}