Fix regression in AbstractJackson2Decoder

Closes gh-29307
This commit is contained in:
rstoyanchev
2022-10-12 15:42:34 +01:00
parent 19cbba6b34
commit 113db2fb2f
2 changed files with 18 additions and 2 deletions

View File

@@ -292,6 +292,10 @@ public abstract class AbstractJackson2Decoder extends Jackson2CodecSupport imple
return getMimeTypes();
}
@Override
public List<MimeType> getDecodableMimeTypes(ResolvableType targetType) {
return getMimeTypes(targetType);
}
// Jackson2CodecSupport