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

View File

@@ -1,7 +1,7 @@
/**
* @module ol/featureloader
*/
import {UNDEFINED} from './functions.js';
import {VOID} from './functions.js';
import FormatType from './format/FormatType.js';
@@ -125,5 +125,5 @@ export function xhr(url, format) {
*/
function(features, dataProjection) {
this.addFeatures(features);
}, /* FIXME handle error */ UNDEFINED);
}, /* FIXME handle error */ VOID);
}