We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23a7332 commit d3874ebCopy full SHA for d3874eb
src/main/java/com/fasterxml/jackson/databind/deser/SettableBeanProperty.java
@@ -408,8 +408,13 @@ public boolean visibleInView(Class<?> activeView) {
408
*
409
* @since 2.1
410
*/
411
- public int getCreatorIndex() { return -1; }
412
-
+ public int getCreatorIndex() {
+ // changed from 'return -1' in 2.7.9 / 2.8.7
413
+ throw new IllegalStateException(String.format(
414
+ "Internal error: no creator index for property '%s' (of type %s)",
415
+ this.getName(), getClass().getName()));
416
+ }
417
+
418
/**
419
* Accessor for id of injectable value, if this bean property supports
420
* value injection.
0 commit comments