Skip to content

Commit

Permalink
Remove useless loading of the sys module, who is also now deprecated …
Browse files Browse the repository at this point in the history
…in node.
  • Loading branch information
lbdremy committed Mar 20, 2012
1 parent ca9f6ae commit 03de3be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions lib/RequestSignatureHelper.js
@@ -1,5 +1,4 @@
var crypto = require('crypto'),
sys = require('sys');
var crypto = require('crypto');

var RSH = function(params) {
this.init(params);
Expand Down
3 changes: 1 addition & 2 deletions test/RequestSignatureHelper.js
@@ -1,5 +1,4 @@
var sys = require('sys'),
assert = require('assert'),
var assert = require('assert'),
RSH = require('../lib/RequestSignatureHelper').RequestSignatureHelper;

// constructor
Expand Down

0 comments on commit 03de3be

Please sign in to comment.