Skip to content

Commit

Permalink
Remove trailing comma that crashes scalariform
Browse files Browse the repository at this point in the history
  • Loading branch information
slandelle committed Jul 12, 2018
1 parent a56d1e2 commit 3ce18c1
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -51,11 +51,11 @@ case class SourceFeederBuilder[T](
}

case class FeederOptions[T](
shard: Boolean = false,
unzip: Boolean = false,
conversion: Option[Record[T] => Record[Any]] = None,
strategy: FeederStrategy = Queue,
batch: Option[Int] = None,
shard: Boolean = false,
unzip: Boolean = false,
conversion: Option[Record[T] => Record[Any]] = None,
strategy: FeederStrategy = Queue,
batch: Option[Int] = None
)

trait BatchableFeederBuilder[T] extends SourceFeederBuilder[T] {
Expand Down

0 comments on commit 3ce18c1

Please sign in to comment.