Skip to content

Commit

Permalink
Apply cfformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano authored and github-actions[bot] committed Jan 12, 2024
1 parent c6e2398 commit 418bbcf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion system/RestHandler.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ component extends="EventHandler" {
){
// Try to discover exception, if not, hard error
if (
!isNull( arguments.prc.exception ) && ( isNull( arguments.exception ) || structIsEmpty( arguments.exception ) )
!isNull( arguments.prc.exception ) && (
isNull( arguments.exception ) || structIsEmpty( arguments.exception )
)
) {
arguments.exception = arguments.prc.exception.getExceptionStruct();
}
Expand Down

0 comments on commit 418bbcf

Please sign in to comment.