Made things that don't need to be public private in ByteString / -Iterator

This commit is contained in:
Oliver Schulz 2012-05-31 00:39:15 +02:00
parent a0ea833d54
commit b285b0821f
2 changed files with 3 additions and 3 deletions

View file

@ -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
}