Skip to content

Commit

Permalink
removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim de Beer committed Oct 3, 2016
1 parent 63247b5 commit 488c1d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/subscribe/parent/origin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function parent (target, subs, update, tree, stamp, force) {
parentTree = tree.parent = { _p: tree, _key: 'parent' }
composite(tree, 'parent')
}
return diff(target.cParent(), subs, update, parentTree, stamp, force)
return diff(target.cParent(), subs, update, parentTree, stamp, void 0, force)
} else if (parentTree && '$remove' in subs) {
remove('parent', target, target, subs, update, tree, parentTree, stamp)
return true
Expand Down
2 changes: 1 addition & 1 deletion lib/subscribe/parent/subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function parent (target, subs, update, tree, stamp, force) {
parentTree = tree.$parent = { _p: tree, _key: '$parent' }
composite(tree, '$parent')
}
return diff(get(target, tree), subs, update, parentTree, stamp, force)
return diff(get(target, tree), subs, update, parentTree, stamp, void 0, force)
} else if (parentTree && '$remove' in subs) {
remove('$parent', target, target, subs, update, tree, parentTree, stamp)
return true
Expand Down

0 comments on commit 488c1d5

Please sign in to comment.