Skip to content

Commit be68293

Browse files
authored
Merge pull request #316 from tototoshi/move-default-instance-to-companion-object
Move a default instance from package object to companion object
2 parents e1ae1cd + f5ebce7 commit be68293

File tree

2 files changed

+4
-23
lines changed

2 files changed

+4
-23
lines changed

src/main/scala/com/github/tototoshi/csv/CSVFormat.scala

+4
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ trait CSVFormat extends Serializable {
3030
val treatEmptyLineAsNil: Boolean
3131

3232
}
33+
34+
object CSVFormat {
35+
implicit val defaultCSVFormat: DefaultCSVFormat = new DefaultCSVFormat {}
36+
}

src/main/scala/com/github/tototoshi/csv/package.scala

-23
This file was deleted.

0 commit comments

Comments
 (0)