Skip to content

Commit a69cb0d

Browse files
committed
Remove unused function
Just a bit of code cleanup
1 parent e778348 commit a69cb0d

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

lib/connection.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -297,19 +297,6 @@ Connection.prototype.setBuffer = function(buffer) {
297297
this.offset = 0;
298298
};
299299

300-
Connection.prototype.readSslResponse = function() {
301-
var remaining = this.buffer.length - (this.offset);
302-
if(remaining < 1) {
303-
this.lastBuffer = this.buffer;
304-
this.lastOffset = this.offset;
305-
return false;
306-
}
307-
return {
308-
name: 'sslresponse',
309-
text: this.buffer[this.offset++]
310-
};
311-
};
312-
313300
Connection.prototype.parseMessage = function() {
314301
var remaining = this.buffer.length - (this.offset);
315302
if(remaining < 5) {

0 commit comments

Comments
 (0)