Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
grantcopley committed Apr 24, 2024
1 parent 9e09a74 commit c0ea6f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/v4/Component.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ component accessors="true" {
var propertyName = arguments.missingMethodName.reReplaceNoCase( "^set", "" );
// Ensure data property exists before setting it
if ( data.keyExists( propertyName ) ) {
variables[ propertyName ] = arguments.missingMethodArguments[ 1 ];
return;
variables[ propertyName ] = arguments.missingMethodArguments[ 1 ];
return;
}
}

Expand Down

0 comments on commit c0ea6f0

Please sign in to comment.