in src/main/java/com/twitter/joauth/Request.java [123:137]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ParsedRequest that = (ParsedRequest) o;
if (port != that.port) return false;
if (host != null ? !host.equals(that.host) : that.host != null) return false;
if (params != null ? !params.equals(that.params) : that.params != null) return false;
if (path != null ? !path.equals(that.path) : that.path != null) return false;
if (scheme != null ? !scheme.equals(that.scheme) : that.scheme != null) return false;
if (verb != null ? !verb.equals(that.verb) : that.verb != null) return false;
return true;
}