public boolean equals()

in dotTrace-agent/src/main/java/jetbrains/buildServer/dotTrace/agent/Context.java [55:67]


  public boolean equals(final Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    final Context context = (Context)o;

    if (!getBaseSetup().equals(context.getBaseSetup())) return false;
    if (!getProjectFile().equals(context.getProjectFile())) return false;
    if (!getSnapshotFile().equals(context.getSnapshotFile())) return false;
    if (!getPatternsFile().equals(context.getPatternsFile())) return false;
    return getReportFile().equals(context.getReportFile());

  }