We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a2448 commit 9801afaCopy full SHA for 9801afa
1 file changed
core/src/main/kotlin/org/evomaster/core/EMConfig.kt
@@ -1018,6 +1018,7 @@ class EMConfig {
1018
1019
val properties = getConfigurationProperties()
1020
.filter { it.annotations.find { it is Experimental } != null }
1021
+ .filter{ it.returnType.javaType is Class<*>} // TODO handle Lists of Enum
1022
.filter {
1023
val returnType = it.returnType.javaType as Class<*>
1024
when {
@@ -1029,6 +1030,7 @@ class EMConfig {
1029
1030
.map { it.name }
1031
1032
val enums = getConfigurationProperties()
1033
1034
1035
1036
if (returnType.isEnum) {
0 commit comments