Fix KOptional.ofNullable signature

This commit is contained in:
DBotThePony 2024-02-21 11:32:50 +07:00
parent 7ca9ff3a5b
commit a19437667a
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.7.3
projectVersion=2.7.4
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -130,7 +130,7 @@ class KOptional<T> private constructor(private val _value: T, val isPresent: Boo
}
@JvmStatic
fun <T> ofNullable(value: T): KOptional<T> {
fun <T : Any> ofNullable(value: T?): KOptional<T> {
if (value == null) {
return EMPTY as KOptional<T>
} else {