Remove usage of method deleted in latest jackson-databind

This commit is contained in:
Kashif Faraz 2022-10-20 21:51:46 +05:30
parent fc262dfbaf
commit 81cb5d41d9
1 changed files with 2 additions and 2 deletions

View File

@ -58,9 +58,9 @@ public class GuiceAnnotationIntrospector extends NopAnnotationIntrospector
if (m instanceof AnnotatedMethod) { if (m instanceof AnnotatedMethod) {
throw new IAE("Annotated methods don't work very well yet..."); throw new IAE("Annotated methods don't work very well yet...");
} }
return Key.get(m.getGenericType()); return Key.get(m.getType());
} }
return Key.get(m.getGenericType(), guiceAnnotation); return Key.get(m.getType(), guiceAnnotation);
} }
/** /**