@@ -223,7 +223,7 @@ function getDbObjectClass(name, cb) {
223
223
}
224
224
225
225
// This getStatementInfo function is just a place holder to allow for easier extension later.
226
- function getStatementInfo ( sql , getStatementInfoCb ) {
226
+ function getStatementInfo ( sql , getStatementInfoCb ) { //eslint-disable-line
227
227
const self = this ;
228
228
229
229
nodbUtil . checkAsyncArgs ( arguments , 2 , 2 ) ;
@@ -232,15 +232,15 @@ function getStatementInfo(sql, getStatementInfoCb) {
232
232
}
233
233
234
234
// This commit function is just a place holder to allow for easier extension later.
235
- function commit ( commitCb ) {
235
+ function commit ( commitCb ) { //eslint-disable-line
236
236
const self = this ;
237
237
238
238
nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
239
239
self . _commit . apply ( self , arguments ) ;
240
240
}
241
241
242
242
// This createLob function is just a place holder to allow for easier extension later.
243
- function createLob ( type , createLobCb ) {
243
+ function createLob ( type , createLobCb ) { //eslint-disable-line
244
244
const self = this ;
245
245
246
246
nodbUtil . checkAsyncArgs ( arguments , 2 , 2 ) ;
@@ -249,7 +249,7 @@ function createLob(type, createLobCb) {
249
249
}
250
250
251
251
// This rollback function is just a place holder to allow for easier extension later.
252
- function rollback ( rollbackCb ) {
252
+ function rollback ( rollbackCb ) { //eslint-disable-line
253
253
const self = this ;
254
254
255
255
nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
@@ -292,7 +292,7 @@ function close(a1, a2) {
292
292
293
293
// This break function is just a place holder to allow for easier extension later.
294
294
// It's attached to the module as break is a reserved word.
295
- module . break = function ( breakCb ) {
295
+ module . break = function ( breakCb ) { //eslint-disable-line
296
296
const self = this ;
297
297
298
298
nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
@@ -334,7 +334,7 @@ function getQueue(name, a2, a3) {
334
334
}
335
335
336
336
// This ping function is just a place holder to allow for easier extension later.
337
- function ping ( pingCb ) {
337
+ function ping ( pingCb ) { //eslint-disable-line
338
338
const self = this ;
339
339
340
340
nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
@@ -374,9 +374,9 @@ function buildDbObjectClass(schema, name, fqn) {
374
374
}
375
375
return proxy ;
376
376
} else if ( initialValue !== undefined ) {
377
- Object . assign ( this , initialValue )
377
+ Object . assign ( this , initialValue ) ;
378
378
}
379
- }
379
+ } ;
380
380
DbObject . prototype = Object . create ( BaseDbObject . prototype ) ;
381
381
DbObject . prototype . constructor = DbObject ;
382
382
DbObject . prototype . schema = schema ;
0 commit comments