Skip to content

Commit

Permalink
fix(ModuleConfig): Fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Feb 6, 2023
1 parent dded0a1 commit 516ed4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ModuleConfig.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ component {
.initArg( name = "utils", ref = "QueryUtils@qb" )
.initArg( name = "preventDuplicateJoins", value = settings.preventDuplicateJoins )
.initArg( name = "returnFormat", value = settings.defaultReturnFormat )
.initArg( name = "defaultOptions", value = settings.defaultOptions );
.initArg( name = "sqlCommenter", ref = "ColdBoxSQLCommenter@qb" );
.initArg( name = "defaultOptions", value = settings.defaultOptions )
.initArg( name = "sqlCommenter", ref = "ColdBoxSQLCommenter@qb" )
.initArg( name = "shouldMaxRowsOverrideToAll", value = settings.shouldMaxRowsOverrideToAll );

binder
Expand Down

0 comments on commit 516ed4d

Please sign in to comment.