Skip to content

Commit

Permalink
SPARK-11193 - Cleanup return keyword in getLatestSeqNumToCheckpoint()…
Browse files Browse the repository at this point in the history
… function
  • Loading branch information
jbonofre committed Dec 11, 2015
1 parent 61221af commit 5cec007
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ private[kinesis] class KinesisReceiver[T](

/** Get the latest sequence number for the given shard that can be checkpointed through KCL */
private[kinesis] def getLatestSeqNumToCheckpoint(shardId: String): Option[String] = {
return Option(shardIdToLatestStoredSeqNum.get(shardId))
Option(shardIdToLatestStoredSeqNum.get(shardId))
}

/**
Expand Down

0 comments on commit 5cec007

Please sign in to comment.