Skip to content

Commit 216275a

Browse files
committed
fixed type mismatch
1 parent d9b3497 commit 216275a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/groovy/com/github/hauner/openapi/spring/converter/mapping/AmbiguousTypeMappingException.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ package com.github.hauner.openapi.spring.converter.mapping
2323
*/
2424
class AmbiguousTypeMappingException extends RuntimeException {
2525

26-
List<TypeMapping> typeMappings
26+
List<Mapping> typeMappings
2727

28-
AmbiguousTypeMappingException(List<TypeMapping> typeMappings) {
28+
AmbiguousTypeMappingException(List<Mapping> typeMappings) {
2929
super()
3030
this.typeMappings = typeMappings
3131
}

0 commit comments

Comments
 (0)