File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 7
7
component {
8
8
9
9
// setup the engine properties
10
- this .ADOBE = " adobe" ;
11
- this .LUCEE = " lucee" ;
10
+ this .ADOBE = " adobe" ;
11
+ this .LUCEE = " lucee" ;
12
12
this .BOXLANG = " boxlang" ;
13
13
14
14
// JDK Version
@@ -23,8 +23,8 @@ component {
23
23
adobe2018 : { invokeArray : false },
24
24
adobe2021 : { invokeArray : false },
25
25
adobe2023 : { invokeArray : false },
26
- lucee : { invokeArray : true },
27
- boxlang : { invokeArray : true }
26
+ lucee : { invokeArray : true },
27
+ boxlang : { invokeArray : true }
28
28
};
29
29
30
30
return this ;
@@ -41,7 +41,7 @@ component {
41
41
* Returns the current running CFML full version
42
42
*/
43
43
string function getFullVersion (){
44
- switch ( getEngine () ){
44
+ switch ( getEngine () ) {
45
45
case this .adobe :
46
46
return server .coldfusion .productVersion ;
47
47
case this .lucee :
@@ -78,11 +78,11 @@ component {
78
78
* @return Either 'lucee' or 'adobe' or 'boxlang'
79
79
*/
80
80
string function getEngine (){
81
- if ( isLucee () ){
81
+ if ( isLucee () ) {
82
82
return this .lucee ;
83
- }else if ( isAdobe () ){
83
+ } else if ( isAdobe () ) {
84
84
return this .adobe ;
85
- }else if ( isBoxLang () ){
85
+ } else if ( isBoxLang () ) {
86
86
return this .boxlang ;
87
87
}
88
88
}
You can’t perform that action at this time.
0 commit comments