Skip to content

Commit

Permalink
Remove deprecated method overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 6, 2023
1 parent 8869e77 commit 49fd6da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -734,20 +734,6 @@ public Object findContentSerializer(Annotated a) {
return null;
}

@Override
@Deprecated // since 2.7
public Class<?> findSerializationType(Annotated a)
{
Class<?> allegedType = _getTypeFromXmlElement(a);
if (allegedType != null){
Class<?> rawPropType = _rawSerializationType(a);
if (!isContainerType(rawPropType)) {
return allegedType;
}
}
return null;
}

@Override // @since 2.7
public JsonInclude.Value findPropertyInclusion(Annotated a)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -745,20 +745,6 @@ public Object findContentSerializer(Annotated a) {
return null;
}

@Override
@Deprecated // since 2.7
public Class<?> findSerializationType(Annotated a)
{
Class<?> allegedType = _getTypeFromXmlElement(a);
if (allegedType != null){
Class<?> rawPropType = _rawSerializationType(a);
if (!isContainerType(rawPropType)) {
return allegedType;
}
}
return null;
}

@Override // @since 2.7
public JsonInclude.Value findPropertyInclusion(Annotated a)
{
Expand Down

0 comments on commit 49fd6da

Please sign in to comment.