Skip to content

Commit b11e27f

Browse files
lmajanogithub-actions[bot]
authored andcommitted
Apply cfformat changes
1 parent c7e5375 commit b11e27f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

system/core/util/CFMLEngine.cfc

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
component {
88

99
// setup the engine properties
10-
this.ADOBE = "adobe";
11-
this.LUCEE = "lucee";
10+
this.ADOBE = "adobe";
11+
this.LUCEE = "lucee";
1212
this.BOXLANG = "boxlang";
1313

1414
// JDK Version
@@ -23,8 +23,8 @@ component {
2323
adobe2018 : { invokeArray : false },
2424
adobe2021 : { invokeArray : false },
2525
adobe2023 : { invokeArray : false },
26-
lucee : { invokeArray : true },
27-
boxlang : { invokeArray : true }
26+
lucee : { invokeArray : true },
27+
boxlang : { invokeArray : true }
2828
};
2929

3030
return this;
@@ -41,7 +41,7 @@ component {
4141
* Returns the current running CFML full version
4242
*/
4343
string function getFullVersion(){
44-
switch( getEngine() ){
44+
switch ( getEngine() ) {
4545
case this.adobe:
4646
return server.coldfusion.productVersion;
4747
case this.lucee:
@@ -78,11 +78,11 @@ component {
7878
* @return Either 'lucee' or 'adobe' or 'boxlang'
7979
*/
8080
string function getEngine(){
81-
if( isLucee() ){
81+
if ( isLucee() ) {
8282
return this.lucee;
83-
}else if( isAdobe() ){
83+
} else if ( isAdobe() ) {
8484
return this.adobe;
85-
}else if( isBoxLang() ){
85+
} else if ( isBoxLang() ) {
8686
return this.boxlang;
8787
}
8888
}

0 commit comments

Comments
 (0)