public int hashCode()

in src/main/java/com/twitter/joauth/Request.java [71:75]


    public int hashCode() {
      int result = key != null ? key.hashCode() : 0;
      result = 31 * result + (value != null ? value.hashCode() : 0);
      return result;
    }