Skip to content

Commit caddb16

Browse files
committed
Remove erroneous comment
1 parent 57461f3 commit caddb16

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

lib/LivePG.js

-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ var LivePG = (function (_EventEmitter) {
6666

6767
common.performQuery(this.notifyHandle.client, 'LISTEN "' + this.channel + '"')['catch'](this._error);
6868

69-
// Cache partial payloads in this closure
70-
7169
this.notifyHandle.client.on('notification', function (info) {
7270
if (info.channel === _this.channel) {
7371
var payload = _this._processNotification(info.payload);

src/LivePG.es6

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ class LivePG extends EventEmitter {
3333
common.performQuery(this.notifyHandle.client, `LISTEN "${this.channel}"`)
3434
.catch(this._error)
3535

36-
// Cache partial payloads in this closure
37-
3836
this.notifyHandle.client.on('notification', info => {
3937
if(info.channel === this.channel) {
4038
var payload = this._processNotification(info.payload)

0 commit comments

Comments
 (0)