Skip to content

Commit

Permalink
#2 Use same brace style everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
sguldmund committed Jan 12, 2024
1 parent d1049be commit 7575f83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Pose/Helpers/ShimHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ public static MethodBase GetMethodFromExpression(Expression expression, bool set
return setter ? propertyInfo.GetSetMethod() : propertyInfo.GetGetMethod();
}
else
{
throw new NotImplementedException("Unsupported expression");
}
}
case ExpressionType.Call:
var methodCallExpression = expression as MethodCallExpression;
Expand Down

0 comments on commit 7575f83

Please sign in to comment.