Skip to content

Commit

Permalink
Merge pull request #415 from xuwei-k/patch-1
Browse files Browse the repository at this point in the history
fix ambiguous overload in Java 9
  • Loading branch information
xerial authored Mar 19, 2017
2 parents 430bc16 + 2733a81 commit f077d19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ class MessageBufferTest
"convert to ByteBuffer" in {
for (t <- buffers) {
val bb = t.sliceAsByteBuffer
bb.position shouldBe 0
bb.limit shouldBe 10
bb.position() shouldBe 0
bb.limit() shouldBe 10
bb.capacity shouldBe 10
}
}
Expand Down

0 comments on commit f077d19

Please sign in to comment.