Skip to content

Commit

Permalink
47degrees#751: remove final on case objects
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoulaj committed Sep 3, 2022
1 parent 5a75b73 commit ff16b4a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ object SearchCodeParam {
sealed trait Value {
def value: String
}
final case object File extends Value {
case object File extends Value {
override def value: String = "file"
}
final case object Path extends Value {
case object Path extends Value {
override def value: String = "path"
}
}
Expand Down

0 comments on commit ff16b4a

Please sign in to comment.