Skip to content

Commit

Permalink
Minor comment improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jul 1, 2024
1 parent 28015cc commit 53995dc
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,11 @@ private final Object _readBean(JSONReader r, JsonParser p, final Object bean) th
}
*/

private Object readRecord(JSONReader r, JsonParser p) throws JacksonException
// 30-Jun-2024, tatu: NOTE: not as optimized as "readBean()": could rewrite
// to use _propNameMatcher but handling of unknown properties bit different.
// So left as future improvement
private Object readRecord(JSONReader r, JsonParser p)
throws JacksonException
{
final Object[] values = new Object[propertiesByName().size()];

Expand Down

0 comments on commit 53995dc

Please sign in to comment.