Skip to content

Commit

Permalink
'switch' statement had no default branch
Browse files Browse the repository at this point in the history
'switch' statement had no default branch. fixed it.
  • Loading branch information
nashjain committed Feb 19, 2015
1 parent 432260f commit 7dd65a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion redips-drag-source.js
Original file line number Diff line number Diff line change
Expand Up @@ -1034,6 +1034,8 @@ REDIPS.drag = (function () {
cld[i][j].options[k].selected = src[i][j].options[k].selected;
}
break;
default: //do nothing
break;
} // end switch
} // end for j
} // end for i
Expand Down Expand Up @@ -4778,4 +4780,4 @@ if (!REDIPS.event) {
}; // end of public (return statement)

}());
}
}

0 comments on commit 7dd65a8

Please sign in to comment.