Skip to content

Commit

Permalink
Merge pull request #450 from Pampattitude/master
Browse files Browse the repository at this point in the history
/lib/common/ & /lib/pubsub/: cleaned a duplicate line and a useless .bind(this)
  • Loading branch information
ryanseys committed Mar 17, 2015
2 parents 812870d + deecff9 commit b8a0025
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion lib/common/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ function makeWritableStream(dup, options, onComplete) {

options = options || {};
options.metadata = options.metadata || {};
onComplete = onComplete || noop;

var boundary = uuid.v4();

Expand Down
2 changes: 1 addition & 1 deletion lib/pubsub/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ PubSub.prototype.createTopic = function(name, callback) {
return;
}
callback(null, topic);
}.bind(this));
});
};

/**
Expand Down

0 comments on commit b8a0025

Please sign in to comment.