Skip to content

Commit 174a1d2

Browse files
committed
Extend Java API for Spring-aware generation #2614
1 parent 4e5ba7f commit 174a1d2

File tree

11 files changed

+666
-645
lines changed

11 files changed

+666
-645
lines changed

utbot-framework-api/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
val junit4Version: String by rootProject
2+
val junit5Version: String by rootProject
23
val sootVersion: String by rootProject
34
val commonsLangVersion: String by rootProject
45
val kotlinLoggingVersion: String? by rootProject

utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ sealed class SpringConfiguration(val fullDisplayName: String) {
14391439
}
14401440

14411441
sealed interface SpringSettings {
1442-
object AbsentSpringSettings : SpringSettings {
1442+
companion object AbsentSpringSettings : SpringSettings {
14431443
// NOTE that overriding equals is required just because without it
14441444
// we will lose equality for objects after deserialization
14451445
override fun equals(other: Any?): Boolean = other is AbsentSpringSettings

0 commit comments

Comments
 (0)