Whitespace

This commit is contained in:
Marc Hernandez 2024-05-03 19:51:45 -07:00
parent ff28a94131
commit c44706124b

View File

@ -37,12 +37,14 @@ static public class Util
return obj;
}
static public T LightProcess<T>( ref T obj, Func<T, T> fn, string reason = "",
static public T LightProcess<T>( ref T obj, Func<T, T> fn,
string reason = "",
[CallerMemberName] string dbgName = "",
[CallerFilePath] string dbgPath = "",
[CallerLineNumber] int dbgLine = 0,
[CallerArgumentExpression("fn")]
string dbgExp = default )
string dbgExp = default
)
where T : Versioned<T>
{
obj = obj.Process( fn, reason );