mirror of https://github.com/apache/druid.git
Remove usage of method deleted in latest jackson-databind
This commit is contained in:
parent
fc262dfbaf
commit
81cb5d41d9
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue