Skip to content

Commit

Permalink
Merge pull request #316 from tototoshi/move-default-instance-to-compa…
Browse files Browse the repository at this point in the history
…nion-object

Move a default instance from package object to companion object
  • Loading branch information
tototoshi authored Jul 1, 2024
2 parents e1ae1cd + f5ebce7 commit be68293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 23 deletions.
4 changes: 4 additions & 0 deletions src/main/scala/com/github/tototoshi/csv/CSVFormat.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ trait CSVFormat extends Serializable {
val treatEmptyLineAsNil: Boolean

}

object CSVFormat {
implicit val defaultCSVFormat: DefaultCSVFormat = new DefaultCSVFormat {}
}
23 changes: 0 additions & 23 deletions src/main/scala/com/github/tototoshi/csv/package.scala

This file was deleted.

0 comments on commit be68293

Please sign in to comment.