Formatting fix

This commit is contained in:
Eugene Yokota 2016-12-24 02:54:12 -05:00
parent a0dde10f8a
commit a2df1a4b53
1 changed files with 3 additions and 3 deletions

View File

@ -36,9 +36,9 @@ abstract class ServerConnection(connection: Socket) {
Serialization.deserializeEvent(chunk).fold(
{ errorDesc =>
val s = new String(chunk.toArray, "UTF-8")
println(s"Got invalid chunk from server: $s \n" + errorDesc)
},
val s = new String(chunk.toArray, "UTF-8")
println(s"Got invalid chunk from server: $s \n" + errorDesc)
},
onEvent
)
}