Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 6328b38

Browse files
author
Patrick Kamin
committed
AutoDetachObserver: remove value parameter from getDisposable() method
1 parent 31c671d commit 6328b38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/autodetachobserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
};
4343

4444
AutoDetachObserverPrototype.setDisposable = function (value) { this.m.setDisposable(value); };
45-
AutoDetachObserverPrototype.getDisposable = function (value) { return this.m.getDisposable(); };
45+
AutoDetachObserverPrototype.getDisposable = function () { return this.m.getDisposable(); };
4646

4747
AutoDetachObserverPrototype.dispose = function () {
4848
__super__.prototype.dispose.call(this);

0 commit comments

Comments
 (0)