Explicit void

This commit is contained in:
Tim Schaub
2018-07-26 10:46:39 -06:00
parent 8346bb7454
commit 6cfa2b22a7
21 changed files with 54 additions and 53 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
/**
* @module ol/Disposable
*/
import {UNDEFINED} from './functions.js';
import {VOID} from './functions.js';
/**
* @classdesc
@@ -30,5 +30,6 @@ Disposable.prototype.disposed_ = false;
* Extension point for disposable objects.
* @protected
*/
Disposable.prototype.disposeInternal = UNDEFINED;
Disposable.prototype.disposeInternal = VOID;
export default Disposable;