autodispose/src/main/java/autodispose2/AutoSubscriptionHelper.java [119:127]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for (; ; ) {
      Subscription current = field.get();
      if (current == CANCELLED) {
        if (s != null) {
          s.cancel();
        }
        return false;
      }
      if (field.compareAndSet(current, s)) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



autodispose/src/main/java/autodispose2/AutoSubscriptionHelper.java [181:189]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for (; ; ) {
      Subscription current = field.get();
      if (current == CANCELLED) {
        if (s != null) {
          s.cancel();
        }
        return false;
      }
      if (field.compareAndSet(current, s)) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



