Skip to content

Commit

Permalink
Fixed long line.
Browse files Browse the repository at this point in the history
  • Loading branch information
tdas committed Apr 10, 2014
1 parent 1c0bcef commit fa760fe
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,13 @@ class NetworkInputTracker(ssc: StreamingContext) extends Logging {
}

/** Register a receiver */
def registerReceiver(streamId: Int, typ: String, host: String, receiverActor: ActorRef, sender: ActorRef) {
def registerReceiver(
streamId: Int,
typ: String,
host: String,
receiverActor: ActorRef,
sender: ActorRef
) {
if (!networkInputStreamMap.contains(streamId)) {
throw new Exception("Register received for unexpected id " + streamId)
}
Expand Down

0 comments on commit fa760fe

Please sign in to comment.