Skip to content

Commit fc1b121

Browse files
committed
update changed core api
1 parent 84b7b01 commit fc1b121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/io/openapiprocessor/spring/model/parameters/QueryParameter.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ class QueryParameter(
7878

7979
private val isMappedObject: Boolean
8080
get() {
81-
if (dataType !is MappedSourceDataType) {
81+
if (dataType !is SourceDataType) {
8282
return false
8383
}
8484

85-
val mapped = dataType as MappedSourceDataType
85+
val mapped = dataType as SourceDataType
8686
return mapped.sourceDataType is ObjectDataType
8787
}
8888
}

0 commit comments

Comments
 (0)