Skip to content

Commit 5a96710

Browse files
committed
Minor streamlining
1 parent 9ee27c2 commit 5a96710

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/tools/jackson/databind/deser/bean/BeanDeserializer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,8 +585,7 @@ protected Object _deserializeUsingPropertyBased(final JsonParser p, final Deseri
585585
// Records (and other creator-based types) will have a valid 'creatorProp', so if we don't
586586
// check for ignore first, the ignore configuration will be bypassed.
587587
// Determine if the property name should be ignored
588-
boolean shouldIgnore = IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps);
589-
if (shouldIgnore) {
588+
if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) {
590589
if (regularProp instanceof MethodProperty) {
591590
// FIX for creatorProp + ignore conflict
592591
creatorProp = null;

0 commit comments

Comments
 (0)