@Nullable
public String getContent() throws VcsException {
if (VcsRevisionNumber.NULL.equals(myRevision)) {
return null;
} else {
GetContentRevision getRevisionCommand = new GetContentRevision(new ArrayList<VcsException>(), mksvcs,
this.getRevisionNumber(), this.getFile().getPath());
getRevisionCommand.execute();
return getRevisionCommand.getContent();
}
}