Skip to content
This repository has been archived by the owner on May 9, 2018. It is now read-only.

Commit

Permalink
Cleaned up from pull request flatiron#128
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrut committed Aug 5, 2013
1 parent 1eb7348 commit 519ee90
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lib/cradle.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ cradle.Connection.prototype.rawRequest = function (options, callback) {
}

// Set client-wide headers
<<<<<<< HEAD
Object.keys(this.options.headers).forEach(function (header) {
options.headers[header] = self.options.headers[header];
});
Expand All @@ -148,7 +147,6 @@ cradle.Connection.prototype.rawRequest = function (options, callback) {
for (var k in options.query) {
if (typeof(options.query[k]) === 'boolean') {
options.query[k] = String(options.query[k]);
=======
for (var h in this.options.headers) {
headers[h] = this.options.headers[h];
}
Expand All @@ -161,7 +159,6 @@ cradle.Connection.prototype.rawRequest = function (options, callback) {
for (var k in options) {
if (typeof(options[k]) === 'boolean') {
options[k] = String(options[k]);
>>>>>>> f9d23f3... support for couchdb in a subdirectory
}
}
options.path += '?' + querystring.stringify(options.query);
Expand Down Expand Up @@ -330,10 +327,7 @@ cradle.merge = function (target) {
});
});
return target;
<<<<<<< HEAD
};
=======
}


>>>>>>> f9d23f3... support for couchdb in a subdirectory

0 comments on commit 519ee90

Please sign in to comment.