Remove redundant call

This commit is contained in:
Toby Zerner 2015-09-01 10:07:56 +09:30
parent 04e711a611
commit 4ed5ff5608

View File

@ -21,7 +21,6 @@ export default class SubtreeRetainer {
* @param {...callbacks} callbacks Functions returning data to keep track of.
*/
constructor(...callbacks) {
this.invalidate();
this.callbacks = callbacks;
this.data = {};
}