@@ -147,14 +147,14 @@ public XmlClassNameIdResolver(JavaType baseType, TypeFactory typeFactory,
147
147
}
148
148
149
149
@ Override
150
- public String idFromValue (Object value )
150
+ public String idFromValue (DatabindContext ctxt , Object value )
151
151
{
152
- return encodeXmlClassName (super .idFromValue (value ));
152
+ return encodeXmlClassName (super .idFromValue (ctxt , value ));
153
153
}
154
154
155
155
@ Override
156
- public JavaType typeFromId (DatabindContext context , String id ) throws IOException {
157
- return super .typeFromId (context , decodeXmlClassName (id ));
156
+ public JavaType typeFromId (DatabindContext ctxt , String id ) throws IOException {
157
+ return super .typeFromId (ctxt , decodeXmlClassName (id ));
158
158
}
159
159
}
160
160
@@ -168,14 +168,14 @@ public XmlMinimalClassNameIdResolver(JavaType baseType, TypeFactory typeFactory,
168
168
}
169
169
170
170
@ Override
171
- public String idFromValue (Object value )
171
+ public String idFromValue (DatabindContext ctxt , Object value )
172
172
{
173
- return encodeXmlClassName (super .idFromValue (value ));
173
+ return encodeXmlClassName (super .idFromValue (ctxt , value ));
174
174
}
175
175
176
176
@ Override
177
- public JavaType typeFromId (DatabindContext context , String id ) throws IOException {
178
- return super .typeFromId (context , decodeXmlClassName (id ));
177
+ public JavaType typeFromId (DatabindContext ctxt , String id ) throws IOException {
178
+ return super .typeFromId (ctxt , decodeXmlClassName (id ));
179
179
}
180
180
}
181
181
}
0 commit comments