Skip to content

Commit

Permalink
Small syntax error from previous backport
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Apr 13, 2014
1 parent 4a325e1 commit 9e89789
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class WindowedDStream[T: ClassTag](
_slideDuration: Duration)
extends DStream[T](parent.ssc) {

if (!_windowDuration.isMultipleOf(parent.slideDuration)) {
if (!_windowDuration.isMultipleOf(parent.slideDuration))
throw new Exception("The window duration of windowed DStream (" + _windowDuration + ") " +
"must be a multiple of the slide duration of parent DStream (" + parent.slideDuration + ")")

Expand Down

0 comments on commit 9e89789

Please sign in to comment.