Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit 84b21e6

Browse files
author
Eduard Ablekimov
committed
Missing changes
1 parent 1b9f46e commit 84b21e6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

status-resolver/src/main/java/com/ackee/versioupdatehandler/model/BasicVersionsConfiguration.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.ackee.versioupdatehandler.model
33
/**
44
* Basic class for versions configuration.
55
*/
6-
class BasicVersionsConfiguration(
6+
open class BasicVersionsConfiguration(
77
private val minimalVersion: Long,
88
private val currentVersion: Long
99
) : VersionsConfiguration {
@@ -19,4 +19,6 @@ class BasicVersionsConfiguration(
1919
override fun currentVersion(): Long {
2020
return currentVersion
2121
}
22-
}
22+
}
23+
24+
object DefaultVersionsConfiguration : BasicVersionsConfiguration(-1, -1)

0 commit comments

Comments
 (0)