Made things that don't need to be public private in ByteString / -Iterator
This commit is contained in:
parent
a0ea833d54
commit
b285b0821f
2 changed files with 3 additions and 3 deletions
|
|
@ -68,7 +68,7 @@ object ByteIterator {
|
|||
this.clear()
|
||||
result
|
||||
}
|
||||
case that: MultiByteArrayIterator ⇒ this +: that
|
||||
case that: MultiByteArrayIterator ⇒ this ++: that
|
||||
}
|
||||
case _ ⇒ super.++(that)
|
||||
}
|
||||
|
|
@ -218,7 +218,7 @@ object ByteIterator {
|
|||
result
|
||||
}
|
||||
|
||||
def +:(that: ByteArrayIterator): this.type = {
|
||||
private[akka] def ++:(that: ByteArrayIterator): this.type = {
|
||||
iterators = that +: iterators
|
||||
this
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue