@@ -194,15 +194,6 @@ public Map<Object, AnnotatedMember> getInjectables() {
194
194
return _injectables ;
195
195
}
196
196
197
- @ Deprecated // since 2.9
198
- public AnnotatedMethod getJsonValueMethod () {
199
- AnnotatedMember m = getJsonValueAccessor ();
200
- if (m instanceof AnnotatedMethod ) {
201
- return (AnnotatedMethod ) m ;
202
- }
203
- return null ;
204
- }
205
-
206
197
/**
207
198
* @since 2.9
208
199
*/
@@ -290,13 +281,6 @@ public ObjectIdInfo getObjectIdInfo()
290
281
return info ;
291
282
}
292
283
293
- /**
294
- * Method for finding Class to use as POJO builder, if any.
295
- */
296
- public Class <?> findPOJOBuilderClass () {
297
- return _annotationIntrospector .findPOJOBuilder (_classDef );
298
- }
299
-
300
284
// for unit tests:
301
285
protected Map <String , POJOPropertyBuilder > getPropertyMap () {
302
286
if (!_collected ) {
@@ -305,6 +289,20 @@ protected Map<String, POJOPropertyBuilder> getPropertyMap() {
305
289
return _properties ;
306
290
}
307
291
292
+ @ Deprecated // since 2.9
293
+ public AnnotatedMethod getJsonValueMethod () {
294
+ AnnotatedMember m = getJsonValueAccessor ();
295
+ if (m instanceof AnnotatedMethod ) {
296
+ return (AnnotatedMethod ) m ;
297
+ }
298
+ return null ;
299
+ }
300
+
301
+ @ Deprecated // since 2.11 (not used by anything at this point)
302
+ public Class <?> findPOJOBuilderClass () {
303
+ return _annotationIntrospector .findPOJOBuilder (_classDef );
304
+ }
305
+
308
306
/*
309
307
/**********************************************************
310
308
/* Public API: main-level collection
0 commit comments