Replace early returns with continues in ReturnValueBinder
This commit is contained in:
parent
38d8781734
commit
5f48a06413
@ -75,13 +75,13 @@ namespace Connected.Data.Storage
|
||||
}
|
||||
|
||||
if (property is null)
|
||||
return;
|
||||
continue;
|
||||
|
||||
var existingValue = property.GetValue(operation);
|
||||
var overwriteAtt = property.FindAttribute<ReturnValueAttribute>();
|
||||
|
||||
if (overwriteAtt is null)
|
||||
return;
|
||||
continue;
|
||||
|
||||
switch (overwriteAtt.ValueBehavior)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user