From e38baa91678e4f88809c837baba65f1716453ff8 Mon Sep 17 00:00:00 2001 From: Nathan McRae Date: Sat, 9 Mar 2024 09:57:00 -0800 Subject: [PATCH] Fix column attribute bug --- SaneTsv.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SaneTsv.cs b/SaneTsv.cs index 366f972..d673656 100644 --- a/SaneTsv.cs +++ b/SaneTsv.cs @@ -95,7 +95,7 @@ public class SaneTsv foreach (PropertyInfo property in typeof(T).GetProperties()) { - TypedTsvColumnAttribute attribute = (TypedTsvColumnAttribute)Attribute.GetCustomAttribute(property, typeof(TypedTsvColumnAttribute)); + TsvColumnAttribute attribute = (TsvColumnAttribute)Attribute.GetCustomAttribute(property, typeof(TsvColumnAttribute)); if (attribute == null) { continue;