Review + build fix

This commit is contained in:
Bjarke Berg
2020-06-11 13:04:01 +02:00
parent 925324041c
commit c2b2b5010d
2 changed files with 2 additions and 4 deletions

View File

@@ -144,7 +144,8 @@ namespace Umbraco.Extensions
var methodParams = ExpressionHelper.GetMethodParams(methodSelector);
if (method == null)
{
throw new MissingMethodException("Could not find the method " + methodSelector + " on type " + typeof(T) + " or the result ");
throw new MissingMethodException(
$"Could not find the method {methodSelector} on type {typeof(T)} or the result ");
}
if (methodParams.Any() == false)