File tree 1 file changed +10
-15
lines changed
src/main/java/com/fasterxml/jackson/databind/deser/impl
1 file changed +10
-15
lines changed Original file line number Diff line number Diff line change @@ -165,11 +165,9 @@ protected void init(Collection<SettableBeanProperty> props)
165
165
166
166
// and aliases
167
167
}
168
- /*
169
- for (int i = 0; i < hashed.length; i += 2) {
170
- System.err.printf("#%02d: %s\n", i>>1, (hashed[i] == null) ? "-" : hashed[i]);
171
- }
172
- */
168
+ //for (int i = 0; i < hashed.length; i += 2) {
169
+ //System.err.printf("#%02d: %s\n", i>>1, (hashed[i] == null) ? "-" : hashed[i]);
170
+ //}
173
171
_hashArea = hashed ;
174
172
_spillCount = spillCount ;
175
173
}
@@ -239,16 +237,13 @@ public BeanPropertyMap withProperty(SettableBeanProperty newProp)
239
237
_spillCount += 2 ;
240
238
if (ix >= _hashArea .length ) {
241
239
_hashArea = Arrays .copyOf (_hashArea , _hashArea .length + 4 );
242
- // Uncomment for debugging only
243
- /*
244
- for (int i = 0; i < _hashArea.length; i += 2) {
245
- if (_hashArea[i] != null) {
246
- System.err.println("Property #"+(i/2)+" '"+_hashArea[i]+"'...");
247
- }
248
- }
249
- System.err.println("And new propr #"+slot+" '"+key+"'");
250
- */
251
-
240
+ // Uncomment for debugging only
241
+ //for (int i = 0; i < _hashArea.length; i += 2) {
242
+ // if (_hashArea[i] != null) {
243
+ // System.err.println("Property #"+(i/2)+" '"+_hashArea[i]+"'...");
244
+ // }
245
+ //}
246
+ //System.err.println("And new propr #"+slot+" '"+key+"'");
252
247
}
253
248
}
254
249
}
You can’t perform that action at this time.
0 commit comments