public int hashCode()

in dotMemoryUnit-agent/src/main/java/jetbrains/buildServer/dotMemoryUnit/agent/DotMemoryUnitContext.java [62:67]


  public int hashCode() {
    int result = getBaseSetup().hashCode();
    result = 31 * result + getSnapshotDirectory().hashCode();
    result = 31 * result + getOutputFile().hashCode();
    return result;
  }