private boolean checkIfFileWasDeleted()

in vault-server/src/jetbrains/buildServer/buildTriggers/vcs/vault/VaultChangeCollector.java [244:256]


  private boolean checkIfFileWasDeleted(final String histPath, final String currPath, final String version) throws VcsException {
    try {
      return isFile(currPath, histPath, version);
    } catch (VcsException e) {
      if (e.getMessage().contains("FailObjPathInvalid")) {
        LOG.info("Cannot get determine if the object was file: '" + currPath + "' '" + histPath + "' " + version, e);
        return false;
      }
      else {
        throw e;
      }
    }
  }