File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/src/main/java/com/cloudera/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
package com .cloudera .api ;
18
18
19
- import com .fasterxml .jackson .databind .AnnotationIntrospector ;
20
19
import com .fasterxml .jackson .databind .MapperFeature ;
21
20
import com .fasterxml .jackson .databind .ObjectMapper ;
22
21
import com .fasterxml .jackson .databind .SerializationFeature ;
22
+ import com .fasterxml .jackson .databind .introspect .AnnotationIntrospectorPair ;
23
23
import com .fasterxml .jackson .module .jaxb .JaxbAnnotationIntrospector ;
24
24
25
25
import java .text .DateFormat ;
@@ -38,7 +38,7 @@ public ApiObjectMapper() {
38
38
39
39
// Allow JAX-B annotations.
40
40
setAnnotationIntrospector (
41
- new AnnotationIntrospector . Pair (
41
+ new AnnotationIntrospectorPair (
42
42
getSerializationConfig ().getAnnotationIntrospector (),
43
43
new JaxbAnnotationIntrospector ()));
44
44
You can’t perform that action at this time.
0 commit comments