public boolean equals()

in dotMemoryUnit-agent/src/main/java/jetbrains/buildServer/dotMemoryUnit/agent/DotMemoryUnitContext.java [49:59]


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

    final DotMemoryUnitContext that = (DotMemoryUnitContext)o;

    if (!getBaseSetup().equals(that.getBaseSetup())) return false;
    if (!getSnapshotDirectory().equals(that.getSnapshotDirectory())) return false;
    return getOutputFile().equals(that.getOutputFile());

  }