Skip to content

Commit b8b8303

Browse files
committed
...
1 parent 3d1cb22 commit b8b8303

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap.java

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,9 @@ protected void init(Collection<SettableBeanProperty> props)
165165

166166
// and aliases
167167
}
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+
//}
173171
_hashArea = hashed;
174172
_spillCount = spillCount;
175173
}
@@ -239,16 +237,13 @@ public BeanPropertyMap withProperty(SettableBeanProperty newProp)
239237
_spillCount += 2;
240238
if (ix >= _hashArea.length) {
241239
_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+"'");
252247
}
253248
}
254249
}

0 commit comments

Comments
 (0)