public boolean equals()

in folsom/src/main/java/com/spotify/folsom/Resolver.java [53:58]


    public boolean equals(final Object o) {
      if (this == o) return true;
      if (o == null || getClass() != o.getClass()) return false;
      final ResolveResult that = (ResolveResult) o;
      return port == that.port && ttl == that.ttl && Objects.equals(host, that.host);
    }