@@ -223,7 +223,7 @@ function getDbObjectClass(name, cb) {
223223}
224224
225225// 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
227227 const self = this ;
228228
229229 nodbUtil . checkAsyncArgs ( arguments , 2 , 2 ) ;
@@ -232,15 +232,15 @@ function getStatementInfo(sql, getStatementInfoCb) {
232232}
233233
234234// 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
236236 const self = this ;
237237
238238 nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
239239 self . _commit . apply ( self , arguments ) ;
240240}
241241
242242// 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
244244 const self = this ;
245245
246246 nodbUtil . checkAsyncArgs ( arguments , 2 , 2 ) ;
@@ -249,7 +249,7 @@ function createLob(type, createLobCb) {
249249}
250250
251251// 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
253253 const self = this ;
254254
255255 nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
@@ -292,7 +292,7 @@ function close(a1, a2) {
292292
293293// This break function is just a place holder to allow for easier extension later.
294294// 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
296296 const self = this ;
297297
298298 nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
@@ -334,7 +334,7 @@ function getQueue(name, a2, a3) {
334334}
335335
336336// 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
338338 const self = this ;
339339
340340 nodbUtil . checkAsyncArgs ( arguments , 1 , 1 ) ;
@@ -374,9 +374,9 @@ function buildDbObjectClass(schema, name, fqn) {
374374 }
375375 return proxy ;
376376 } else if ( initialValue !== undefined ) {
377- Object . assign ( this , initialValue )
377+ Object . assign ( this , initialValue ) ;
378378 }
379- }
379+ } ;
380380 DbObject . prototype = Object . create ( BaseDbObject . prototype ) ;
381381 DbObject . prototype . constructor = DbObject ;
382382 DbObject . prototype . schema = schema ;
0 commit comments