Skip to content

Commit

Permalink
The "sys" module is now called "util". It should have a similar inter…
Browse files Browse the repository at this point in the history
…face.
  • Loading branch information
Kuraturpa committed Jan 8, 2012
1 parent a65a36b commit a23ab30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/c2dm.js
@@ -1,4 +1,4 @@
var sys = require('sys')
var util = require('util')
, https = require('https')
, querystring = require('querystring')
, emitter = require('events').EventEmitter;
Expand Down Expand Up @@ -31,7 +31,7 @@ function C2DM(config) {
};
};

sys.inherits(C2DM, emitter);
util.inherits(C2DM, emitter);

exports.C2DM = C2DM;

Expand Down

0 comments on commit a23ab30

Please sign in to comment.