This commit is contained in:
Andrew Naylor 2015-04-10 00:14:26 +01:00
Родитель b1afaa168a
Коммит d173398ce5
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -626,11 +626,6 @@ Connection.prototype.raiseError = function(errorCode, notification, recipient) {
* @return {Boolean} Write completed, returns true if socketDrained should be called by the caller of this method.
*/
Connection.prototype.transmitNotification = function(socket, notification) {
if (!this.socketAvailable(socket)) {
this.bufferNotification(notification);
return;
}
var token = notification.recipient.token;
var encoding = notification.notification.encoding || "utf8";
var message = notification.notification.compile();