File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 77component {
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 }
You can’t perform that action at this time.
0 commit comments