Skip to content

Commit

Permalink
Merge pull request #270 from node-migrator-bot/clean
Browse files Browse the repository at this point in the history
Hi! I fixed some calls to "sys" for you!
  • Loading branch information
mmalecki committed Jun 25, 2012
2 parents ccd8f84 + bf7e328 commit fd16aeb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vendor/websocket.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var http = require('http');
var https = require('https');
var net = require('net');
var urllib = require('url');
var sys = require('sys');
var util = require('util');

var FRAME_NO = 0;
var FRAME_LO = 1;
Expand All @@ -52,7 +52,7 @@ var CLOSED = 3;

var debugLevel = parseInt(process.env.NODE_DEBUG, 16);
var debug = (debugLevel & 0x4) ?
function() { sys.error.apply(this, arguments); } :
function() { util.error.apply(this, arguments); } :
function() { };

// Generate a Sec-WebSocket-* value
Expand Down Expand Up @@ -246,7 +246,7 @@ var WebSocket = function(url, proto, opts) {

// FRAME_LO
function(buf, off) {
debug('frame_lo(' + sys.inspect(buf) + ', ' + off + ')');
debug('frame_lo(' + util.inspect(buf) + ', ' + off + ')');

// Find the first instance of 0xff, our terminating byte
for (var i = off; i < buf.length && buf[i] != 0xff; i++)
Expand Down Expand Up @@ -306,7 +306,7 @@ var WebSocket = function(url, proto, opts) {

// FRAME_HI
function(buf, off) {
debug('frame_hi(' + sys.inspect(buf) + ', ' + off + ')');
debug('frame_hi(' + util.inspect(buf) + ', ' + off + ')');

if (buf[off] !== 0) {
throw new Error('High-byte framing not supported.');
Expand All @@ -323,7 +323,7 @@ var WebSocket = function(url, proto, opts) {
return;
}

debug('dataListener(' + sys.inspect(buf) + ')');
debug('dataListener(' + util.inspect(buf) + ')');

var off = 0;
var consumed = 0;
Expand Down Expand Up @@ -624,7 +624,7 @@ var WebSocket = function(url, proto, opts) {
httpReq.end();
})();
};
sys.inherits(WebSocket, events.EventEmitter);
util.inherits(WebSocket, events.EventEmitter);
exports.WebSocket = WebSocket;

// Add some constants to the WebSocket object
Expand Down

0 comments on commit fd16aeb

Please sign in to comment.