Skip to content

Commit 9e3e894

Browse files
Removed accidental Console.Write
Good case for a linter :)
1 parent 4635e7e commit 9e3e894

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/DatatablesParser/DatatablesParser.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,6 @@ public Results<T> Parse()
154154
/// <param name="tostring">A lambda given T returns a string by performing a sql translatable operation on property</param>
155155
public Parser<T> SetConverter(Expression<Func<T,object>> property, Expression<Func<T,string>> tostring)
156156
{
157-
Console.WriteLine(property.Body.NodeType);
158-
159157
var memberExp = ((UnaryExpression)property.Body).Operand as MemberExpression;
160158

161159
if(memberExp == null)

0 commit comments

Comments
 (0)