Formatting fix

This commit is contained in:
Eugene Yokota
2017-01-06 11:27:41 -05:00
parent a0dde10f8a
commit a2df1a4b53
@@ -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
)
}