Skip to content

Commit 8838a4e

Browse files
committed
Remove trailing whitespace from JS code
1 parent 5d85e87 commit 8838a4e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/oracledb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function createPool(poolAttrs, createPoolCb) {
4848
createPoolCb(err);
4949
return;
5050
}
51-
51+
5252
pool.extend(poolInst, poolAttrs, self);
5353

5454
createPoolCb(undefined, poolInst);

lib/pool.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ function terminate(terminateCb) {
220220
function logStats() {
221221
var self = this;
222222
var averageTimeInQueue;
223-
223+
224224
if (!self._isValid) {
225225
console.log('_logStats must be called prior to terminating pool.');
226226
return;

lib/resultset-read-stream.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function ResultSetReadStream(conn, sql, binding, options) {
3030
options = options || {};
3131

3232
options.resultSet = true;
33-
33+
3434
self.streamNumRows = options.streamNumRows || conn._oracledb.streamNumRows;
3535

3636
Readable.call(self, {
@@ -47,7 +47,7 @@ function ResultSetReadStream(conn, sql, binding, options) {
4747
}
4848
}
4949
});
50-
50+
5151
conn._execute(sql, binding, options, function(err, result) {
5252
self._onExecuteDone(err, result);
5353
});
@@ -78,7 +78,7 @@ ResultSetReadStream.prototype._read = function () {
7878

7979
ResultSetReadStream.prototype._onExecuteDone = function(err, result) {
8080
var self = this;
81-
81+
8282
if (err) {
8383
self.nextRow = function emitError(streamCallback) {
8484
streamCallback(err);

0 commit comments

Comments
 (0)