Skip to content

Commit

Permalink
[RFR-837] Add serialVersionUID to CalibrationJob
Browse files Browse the repository at this point in the history
  • Loading branch information
hb0 committed Oct 2, 2023
1 parent 30ef3a3 commit 426e1ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libs/model/src/main/kotlin/de/cyface/model/CalibrationJob.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import java.util.UUID
*
* @author Armin Schnabel
* @author Klemens Muthmann
* @version 3.0.0
* @version 3.1.0
* @since 2.3.1
* @param id The id of the job to update about the status and progress of the processing.
* @param startedBy The id of the user who triggered the pipeline and will own the result data.
Expand Down Expand Up @@ -63,4 +63,8 @@ class CalibrationJob(
processable: Boolean,
totalLocations: Int
) : this(job.id, job.startedBy, processable, totalLocations)

companion object {
private const val serialVersionUID = -46L
}
}

0 comments on commit 426e1ee

Please sign in to comment.