Skip to content
This repository was archived by the owner on Feb 5, 2020. It is now read-only.

Commit 05917d9

Browse files
committed
Replace obsolete _error method.
Was removed in 3cd2196. Fixes #33
1 parent caa61bc commit 05917d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sparql/UnionIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function UnionIterator(sources, options) {
1616
// Create event listeners
1717
var self = this;
1818
function fillBuffer() { self._fillBuffer(); }
19-
function emitError(error) { self._error(error); }
19+
function emitError(error) { self.emit('error', error); }
2020

2121
// Add all readable sources and listen to their events
2222
for (var i = 0, l = sources.length; i < l; i++) {

0 commit comments

Comments
 (0)