Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #247 from peterlazzarino/master
Browse files Browse the repository at this point in the history
Remove unused method causing test failure in pull request.
  • Loading branch information
mythz committed Nov 29, 2012
2 parents eb43d68 + db379c0 commit 58c2538
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/ServiceStack.Text/CsvWriter.cs
Expand Up @@ -302,18 +302,6 @@ public static void WriteRow(TextWriter writer, IEnumerable<string> row)
writer.WriteLine(); writer.WriteLine();
} }


public static void WriteObjectRow(TextWriter writer, IEnumerable<object> row)
{
var ranOnce = false;
foreach (var field in row)
{
JsWriter.WriteItemSeperatorIfRanOnce(writer, ref ranOnce);

writer.Write(field.ToCsvField());
}
writer.WriteLine();
}

public static void Write(TextWriter writer, IEnumerable<List<string>> rows) public static void Write(TextWriter writer, IEnumerable<List<string>> rows)
{ {
if (Headers.Count > 0) if (Headers.Count > 0)
Expand Down

0 comments on commit 58c2538

Please sign in to comment.