in 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());
}