Skip to content

Commit

Permalink
Remove extra requires.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuTurcotte committed May 7, 2013
1 parent 71cc4cf commit b3863ef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/all.js
Expand Up @@ -3,13 +3,13 @@
* Licensed under the MIT license.
*/

var events = require('events');
var util = require('util');

var WaitForMultiple = require('./multiple');

function WaitForAll(options) {
WaitForMultiple.call(this, options);

this.emittedArguments = [];
}
util.inherits(WaitForAll, WaitForMultiple);
Expand Down
1 change: 0 additions & 1 deletion lib/any.js
Expand Up @@ -3,7 +3,6 @@
* Licensed under the MIT license.
*/

var events = require('events');
var util = require('util');

var WaitForMultiple = require('./multiple');
Expand Down

0 comments on commit b3863ef

Please sign in to comment.