Skip to content

Commit

Permalink
Fix CsvOutput Heap bug. Rename file as Utils.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Lister committed Nov 7, 2014
1 parent 8522053 commit ffef548
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object Utils {
* Adds method csvIterator:Iterator[String] and
* writeCsv(w:java.io.Writer) to a CollSeq
*/
implicit class CsvOutput(c: Iterable[Product]) {
implicit class CsvOutput(c: =>Iterable[Product]) {

private def stringify(a: Any):String = {
a match {
Expand Down

1 comment on commit ffef548

@ms-tg
Copy link

@ms-tg ms-tg commented on ffef548 Nov 7, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great!

Please sign in to comment.