Skip to content

Commit

Permalink
[#340] Javadoc Typo in Seq.seq(LongStream) and Seq.seq(DoubleStream)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Aug 27, 2018
1 parent 37a46ff commit 889d87c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jOOL-java-8/src/main/java/org/jooq/lambda/Seq.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4660,7 +4660,7 @@ static Seq<Integer> seq(IntStream stream) {
} }


/** /**
* Wrap a <code>IntStream</code> into a <code>Seq</code>. * Wrap a <code>LongStream</code> into a <code>Seq</code>.
*/ */
static Seq<Long> seq(LongStream stream) { static Seq<Long> seq(LongStream stream) {
if (stream == null) if (stream == null)
Expand All @@ -4670,7 +4670,7 @@ static Seq<Long> seq(LongStream stream) {
} }


/** /**
* Wrap a <code>IntStream</code> into a <code>Seq</code>. * Wrap a <code>DoubleStream</code> into a <code>Seq</code>.
*/ */
static Seq<Double> seq(DoubleStream stream) { static Seq<Double> seq(DoubleStream stream) {
if (stream == null) if (stream == null)
Expand Down
4 changes: 2 additions & 2 deletions jOOL/src/main/java/org/jooq/lambda/Seq.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4660,7 +4660,7 @@ static Seq<Integer> seq(IntStream stream) {
} }


/** /**
* Wrap a <code>IntStream</code> into a <code>Seq</code>. * Wrap a <code>LongStream</code> into a <code>Seq</code>.
*/ */
static Seq<Long> seq(LongStream stream) { static Seq<Long> seq(LongStream stream) {
if (stream == null) if (stream == null)
Expand All @@ -4670,7 +4670,7 @@ static Seq<Long> seq(LongStream stream) {
} }


/** /**
* Wrap a <code>IntStream</code> into a <code>Seq</code>. * Wrap a <code>DoubleStream</code> into a <code>Seq</code>.
*/ */
static Seq<Double> seq(DoubleStream stream) { static Seq<Double> seq(DoubleStream stream) {
if (stream == null) if (stream == null)
Expand Down

0 comments on commit 889d87c

Please sign in to comment.