Cleanup various warnings in akka-stream #26395

This commit is contained in:
Christopher Batey 2019-02-26 17:28:29 +00:00 committed by Johan Andrén
parent c3806c9135
commit 51add23b2a
20 changed files with 44 additions and 60 deletions

View file

@ -626,7 +626,7 @@ final class IOSettings private (val tcpWriteBufferSize: Int) {
def withTcpWriteBufferSize(value: Int): IOSettings = copy(tcpWriteBufferSize = value)
private def copy(tcpWriteBufferSize: Int = tcpWriteBufferSize): IOSettings = new IOSettings(
private def copy(tcpWriteBufferSize: Int): IOSettings = new IOSettings(
tcpWriteBufferSize = tcpWriteBufferSize)
override def equals(other: Any): Boolean = other match {