Skip to content

Commit 8718f9d

Browse files
lmajanogithub-actions[bot]
authored andcommitted
Apply cfformat changes
1 parent 66ebeff commit 8718f9d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

system/core/util/CFMLEngine.cfc

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ component {
1313

1414
// BoxLang Detection
1515
this.IS_BOXLANG = server.keyExists( "boxlang" );
16-
this.IS_CLI = this.IS_BOXLANG && server.boxlang.cliMode ? true : false;
16+
this.IS_CLI = this.IS_BOXLANG && server.boxlang.cliMode ? true : false;
1717

1818
// JDK Version
1919
this.JDK_VERSION = createObject( "java", "java.lang.System" ).getProperty( "java.version" );

system/ioc/Builder.cfc

+2-2
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,11 @@ component serializable="false" accessors="true" {
291291
.rows
292292
.toList( chr( 13 ) & chr( 10 ) );
293293

294-
if( server.keyExists( "boxlang" ) ){
294+
if ( server.keyExists( "boxlang" ) ) {
295295
throw(
296296
type : "Builder.BuildCFCDependencyException",
297297
extendedInfo: "Current Injector -> #variables.injector.getName()#",
298-
object : e
298+
object : e
299299
);
300300
} else {
301301
throw(

system/ioc/Injector.cfc

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ component serializable="false" accessors="true" {
137137
* The default binder class to use when no binder is passed to the injector
138138
*/
139139
variables.DEFAULT_BINDER = "coldbox.system.ioc.config.DefaultBinder";
140-
variables.IS_BOXLANG = server.keyExists( "boxlang" );
141-
variables.IS_CLI = variables.IS_BOXLANG && server.boxlang.cliMode ? true : false;
140+
variables.IS_BOXLANG = server.keyExists( "boxlang" );
141+
variables.IS_CLI = variables.IS_BOXLANG && server.boxlang.cliMode ? true : false;
142142

143143
/**
144144
* WireBox can be constructed with no parameters and it will use the default binder: `coldbox.system.ioc.config.DefaultBinder` for configuration

system/logging/LogBox.cfc

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ component accessors="true" {
7373
*/
7474
variables.DEFAULT_CONFIG = "coldbox.system.logging.config.DefaultConfig";
7575
// BoxLang Detection
76-
variables.IS_BOXLANG = server.keyExists( "boxlang" );
77-
variables.IS_CLI = variables.IS_BOXLANG && server.boxlang.cliMode ? true : false;
76+
variables.IS_BOXLANG = server.keyExists( "boxlang" );
77+
variables.IS_CLI = variables.IS_BOXLANG && server.boxlang.cliMode ? true : false;
7878

7979
/**
8080
* Constructor

system/web/Controller.cfc

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ component serializable="false" accessors="true" {
8888

8989
// BoxLang Detection
9090
variables.IS_BOXLANG = server.keyExists( "boxlang" );
91-
variables.IS_CLI = variables.IS_BOXLANG && server.boxlang.cliMode ? true : false;
91+
variables.IS_CLI = variables.IS_BOXLANG && server.boxlang.cliMode ? true : false;
9292

9393
/**
9494
* Constructor

0 commit comments

Comments
 (0)