Skip to content

Commit

Permalink
Apply cfformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen authored and github-actions[bot] committed Jan 22, 2025
1 parent 7286627 commit 326e5fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion system/core/util/CFMLEngine.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ component {
* Verify if this is an adobe server
*/
boolean function isAdobe(){
return !isBoxlang() && server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase( "ColdFusion" );
return !isBoxlang() && server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase(
"ColdFusion"
);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion system/core/util/Util.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ component {
boolean function inThread(){
var engine = "ADOBE";

if( server.keyExists( "boxlang" ) ){
if ( server.keyExists( "boxlang" ) ) {
engine = "BOXLANG";
} else if ( server.coldfusion.productname eq "Lucee" ) {
engine = "LUCEE";
Expand Down

0 comments on commit 326e5fb

Please sign in to comment.