src/main/java/com/amazonaws/services/simpleworkflow/flow/worker/DecisionTaskPoller.java [90:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public PollForDecisionTaskResponse next() {
            if (!hasNext()) {
                throw new IllegalStateException("hasNext() == false");
            }
            PollForDecisionTaskResponse result = next;
            if (next.nextPageToken() == null) {
                next = null;
            } else {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/simpleworkflow/flow/worker/WorkflowHistoryDecisionTaskIterator.java [68:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public PollForDecisionTaskResponse next() {
        if (!hasNext()) {
            throw new IllegalStateException("hasNext() == false");
        }
        PollForDecisionTaskResponse result = next;
        if (next.nextPageToken() == null) {
            next = null;
        } else {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



