Skip to content

Commit

Permalink
去掉多余 log
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryify committed Jun 13, 2017
1 parent 9a04e32 commit 7510bb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/control/states.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const states = {
let matrix = fromJS(state.matrix)
const shape = cur && cur.shape
const xy = fromJS(cur && cur.xy)
console.log({ matrix, shape, xy })
// console.log({ matrix, shape, xy })
shape.forEach((m, k1) =>
m.forEach((n, k2) => {
if (n && xy.get(0) + k1 >= 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/control/todo/down.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const down = store => {
let matrix = fromJS(state.matrix)
const shape = cur.shape
const xy = fromJS(cur.xy)
console.log({ matrix, shape, xy })
// console.log({ matrix, shape, xy })
shape.forEach((m, k1) =>
m.forEach((n, k2) => {
if (n && xy.get(0) + k1 >= 0) {
Expand Down

0 comments on commit 7510bb0

Please sign in to comment.