chore: remove extraneous call

This commit is contained in:
Andrew Welker
2024-10-30 13:20:43 -05:00
parent 332faaa9cc
commit aca6fe9af5

View File

@@ -107,8 +107,7 @@ namespace PepperDash.Essentials.Core
}
protected void AddJoins(Type type)
{
type.GetType();
{
var fields =
type.GetFields(BindingFlags.Public | BindingFlags.Instance)
.Where(f => f.IsDefined(typeof (JoinNameAttribute), true)).ToList();