From 3bc5895fb78263e232e2269a2d9d89ffca56d663 Mon Sep 17 00:00:00 2001 From: jos Date: Mon, 29 Dec 2014 16:49:10 +0100 Subject: [PATCH] Fixed fall through inspection comment --- lib/timeline/TimeStep.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/timeline/TimeStep.js b/lib/timeline/TimeStep.js index 4b67c8bf..01785c6a 100644 --- a/lib/timeline/TimeStep.js +++ b/lib/timeline/TimeStep.js @@ -126,7 +126,7 @@ TimeStep.prototype.first = function() { TimeStep.prototype.roundToMinor = function() { // round to floor // IMPORTANT: we have no breaks in this switch! (this is no bug) - //noinspection FallthroughInSwitchStatementJS + // noinspection FallThroughInSwitchStatementJS switch (this.scale) { case 'year': this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step));