improved comment

This commit is contained in:
Fabian Vogelsteller 2015-06-05 11:05:14 +02:00
parent d9ce08e49e
commit 1d3d727f31

View File

@ -145,7 +145,7 @@ Filter.prototype.watch = function (callback) {
Filter.prototype.stopWatching = function () { Filter.prototype.stopWatching = function () {
RequestManager.getInstance().stopPolling(this.filterId); RequestManager.getInstance().stopPolling(this.filterId);
// remove async // remove filter async
this.implementation.uninstallFilter(this.filterId, function(){}); this.implementation.uninstallFilter(this.filterId, function(){});
this.callbacks = []; this.callbacks = [];
}; };