Skip to content

Commit ade94d5

Browse files
jclausengithub-actions[bot]
authored andcommitted
Apply cfformat changes
1 parent 28eb86f commit ade94d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

system/cache/store/indexers/JDBCMetadataIndexer.cfc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ component extends="coldbox.system.cache.store.indexers.MetadataIndexer" accessor
5151
variables.sqlType = ( findNoCase( "Microsoft SQL", DBData.database_productName ) ? "MSSQL" : "MySQL" );
5252

5353
// store jdbc configuration + params
54-
param name="arguments.config.dsnUsername" default="";
55-
param name="arguments.config.dsnPassword" default="";
56-
param name="arguments.config.queryIncludeDsn" default="true";
57-
variables.config = arguments.config;
54+
param name ="arguments.config.dsnUsername" default="";
55+
param name ="arguments.config.dsnPassword" default="";
56+
param name ="arguments.config.queryIncludeDsn" default="true";
57+
variables.config= arguments.config;
5858

5959
// store storage reference
6060
variables.store = arguments.store;

system/ioc/config/Mapping.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ component accessors="true" {
563563
variables.scope = arguments.binder.SCOPES.CACHEBOX;
564564
}
565565
// check if scope found? If so, then set it to no scope.
566-
else if( !len( variables.scope ) ) {
566+
else if ( !len( variables.scope ) ) {
567567
variables.scope = "noscope";
568568
}
569569
}

0 commit comments

Comments
 (0)