Skip to content

Commit

Permalink
Merge pull request #1060 from aol/fixForPlusAllIssue
Browse files Browse the repository at this point in the history
Fix for #1057
  • Loading branch information
johnmcclean authored Jun 19, 2019
2 parents c3dc99b + 7e79be7 commit 98c24e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyclops/src/main/java/cyclops/data/Seq.java
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ public <R> R foldSeq(Function<? super Cons<T>, ? extends R> fn1, Function<? supe

@Override
public Seq<T> plusAll(Iterable<? extends T> t) {
return fromIterable((Iterable<T>)t);
return prependAll(t);
}

@Override
Expand Down

0 comments on commit 98c24e1

Please sign in to comment.