File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ component {
13
13
14
14
// BoxLang Detection
15
15
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 ;
17
17
18
18
// JDK Version
19
19
this .JDK_VERSION = createObject ( " java" , " java.lang.System" ).getProperty ( " java.version" );
Original file line number Diff line number Diff line change @@ -291,11 +291,11 @@ component serializable="false" accessors="true" {
291
291
.rows
292
292
.toList ( chr ( 13 ) & chr ( 10 ) );
293
293
294
- if ( server .keyExists ( " boxlang" ) ){
294
+ if ( server .keyExists ( " boxlang" ) ) {
295
295
throw (
296
296
type : " Builder.BuildCFCDependencyException" ,
297
297
extendedInfo : " Current Injector -> #variables .injector .getName () #" ,
298
- object : e
298
+ object : e
299
299
);
300
300
} else {
301
301
throw (
Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ component serializable="false" accessors="true" {
137
137
* The default binder class to use when no binder is passed to the injector
138
138
*/
139
139
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 ;
142
142
143
143
/**
144
144
* WireBox can be constructed with no parameters and it will use the default binder: `coldbox.system.ioc.config.DefaultBinder` for configuration
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ component accessors="true" {
73
73
*/
74
74
variables .DEFAULT_CONFIG = " coldbox.system.logging.config.DefaultConfig" ;
75
75
// 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 ;
78
78
79
79
/**
80
80
* Constructor
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ component serializable="false" accessors="true" {
88
88
89
89
// BoxLang Detection
90
90
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 ;
92
92
93
93
/**
94
94
* Constructor
You can’t perform that action at this time.
0 commit comments