Skip to content

Commit

Permalink
Remove default value of param in constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
platan committed Jun 1, 2023
1 parent 20b76b1 commit cc17e35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.time.ZoneId
import java.time.temporal.ChronoUnit

@Serializable
data class TestExecutionScheduleReport(val results: List<TimedTestResult>, val marks: List<Mark> = emptyList()) {
data class TestExecutionScheduleReport(val results: List<TimedTestResult>, val marks: List<Mark>) {

constructor(results: List<TimedTestResult>) : this(results, emptyList())

Expand Down

0 comments on commit cc17e35

Please sign in to comment.