Skip to content

Commit

Permalink
Use 'throw new NotImplementedError()' instead of '???'
Browse files Browse the repository at this point in the history
  • Loading branch information
techncl committed Jan 30, 2025
1 parent 94acc57 commit 77fc156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class CsvValidatorSpec extends Specification with TestResources {
val callback = new ProgressCallback {
var processed = -1
var total = -2
override def update(complete: Percentage): Unit = ???
override def update(complete: Percentage): Unit = throw new NotImplementedError()

override def update(_total: Int, _processed: Int): Unit = {
total = _total
Expand Down

0 comments on commit 77fc156

Please sign in to comment.