mobius-rx2/src/main/java/com/spotify/mobius/rx2/UnrecoverableIncomingException.java [39:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean equals(Object o) {
    if (!(o instanceof UnrecoverableIncomingException)) {
      return false;
    }

    final UnrecoverableIncomingException other = (UnrecoverableIncomingException) o;
    return o == this
        || (getCause() == null && other.getCause() == null)
        || getCause().equals(other.getCause());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mobius-rx/src/main/java/com/spotify/mobius/rx/UnrecoverableIncomingException.java [39:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean equals(Object o) {
    if (!(o instanceof UnrecoverableIncomingException)) {
      return false;
    }

    final UnrecoverableIncomingException other = (UnrecoverableIncomingException) o;
    return o == this
        || (getCause() == null && other.getCause() == null)
        || getCause().equals(other.getCause());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mobius-rx3/src/main/java/com/spotify/mobius/rx3/UnrecoverableIncomingException.java [39:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean equals(Object o) {
    if (!(o instanceof UnrecoverableIncomingException)) {
      return false;
    }

    final UnrecoverableIncomingException other = (UnrecoverableIncomingException) o;
    return o == this
        || (getCause() == null && other.getCause() == null)
        || getCause().equals(other.getCause());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



