Skip to content

Commit 172ee27

Browse files
authored
Merge pull request #83 from baharclerode/bah.FixCustomIntrospector
[Avro] Use configured introspector in module
2 parents 0723dfa + d350e52 commit 172ee27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

avro/src/main/java/com/fasterxml/jackson/dataformat/avro/AvroModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void setupModule(SetupContext context) {
8888
protected void _addIntrospector(SetupContext context) {
8989
if (_intr != null) {
9090
// insert (instead of append) to have higher precedence
91-
context.insertAnnotationIntrospector(INTR);
91+
context.insertAnnotationIntrospector(_intr);
9292
}
9393
}
9494

0 commit comments

Comments
 (0)