File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
test/java/tools/jackson/databind/deser/filter Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 2727 exports tools .jackson .databind .cfg ;
2828 exports tools .jackson .databind .deser ;
2929 exports tools .jackson .databind .deser .bean ;
30- // exports tools.jackson.databind.deser.impl;
30+ // Alas multiple types from this package are exported. Would
31+ // ideally move, but for now expose
32+ exports tools .jackson .databind .deser .impl ;
3133 exports tools .jackson .databind .deser .jackson ;
3234 exports tools .jackson .databind .deser .jdk ;
3335 exports tools .jackson .databind .deser .std ;
Original file line number Diff line number Diff line change 33import tools .jackson .databind .PropertyName ;
44import tools .jackson .databind .introspect .Annotated ;
55import tools .jackson .databind .introspect .AnnotatedParameter ;
6- import tools .jackson .databind .util .ClassUtil ;
7- import tools .jackson .databind .util .ExceptionUtil ;
86
97/**
108 * Since 2 JDK7-added annotations were left out of JDK 9+ core modules,
Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ public Builder(JsonFactory f) {
2626 super (f );
2727 }
2828
29+ /**
30+ * NOTE: while public, not exposed as part of public API.
31+ *
32+ * @param state State from which to restore state of this builder
33+ */
34+ @ SuppressWarnings ("exports" )
2935 public Builder (StateImpl state ) {
3036 super (state );
3137 }
Original file line number Diff line number Diff line change 11package tools .jackson .databind .deser .filter ;
22
3- import java .beans .ConstructorProperties ;
4-
53import org .junit .jupiter .api .Test ;
64
75import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
You can’t perform that action at this time.
0 commit comments