Skip to content

Commit

Permalink
Remove redundant final modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitarg committed Oct 30, 2024
1 parent e1a61cc commit 3d7a76b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object IntegrationTestConfig {
override def toString = "IntegrationTestConfig.CI()"
}

final case object NotCI extends IntegrationTestConfig
case object NotCI extends IntegrationTestConfig

def load: IO[IntegrationTestConfig] = for {
isCi <- IO.delay {
Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/weaver/pure/ApiTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ object ApiTest extends Suite {
)
)

final case object SomeError extends Exception with NoStackTrace
case object SomeError extends Exception with NoStackTrace
}

0 comments on commit 3d7a76b

Please sign in to comment.