@@ -440,11 +440,6 @@ class FileLoader {
return this.file
.then( file => this._reader.read( file ) )
.then( data => {
- // Edge case: reader was aborted after file was read - double check for proper status.
- if ( this.status !== 'reading' ) {
- throw this.status;
- }
-
this.status = 'idle';
return data;