Skip to content

Commit

Permalink
remove errant debugger statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bryevdv committed Jun 5, 2018
1 parent 7d2d55f commit c591751
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bokehjs/src/lib/models/expressions/cumsum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export class CumSum extends Expression {
result[0] = 0
else
result[0] = col[0]
debugger
for (let i = 1; i < result.length; i++) {
result[i] = result[i-1] + col[i-offset]
}
Expand Down

0 comments on commit c591751

Please sign in to comment.