Skip to content

Commit

Permalink
Merge branch '2.16' into name-len
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Aug 26, 2023
2 parents 5b5bc0b + d40e548 commit c5a902d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* </li>
* <li>Maximum String value length: default 20_000_000 (see {@link #DEFAULT_MAX_STRING_LEN})
* </li>
* <li>Maximum Property name length: default 50_000 (see {@link #DEFAULT_MAX_NAME_LEN})
* </li>
* <li>Maximum Nesting depth: default 1000 (see {@link #DEFAULT_MAX_DEPTH})
* </li>
* </ul>
Expand Down Expand Up @@ -48,6 +50,8 @@ public class StreamReadConstraints
/**
* Default setting for maximum name length: see {@link Builder#maxNameLength(int)}
* for details.
*
* @since 2.16
*/
public static final int DEFAULT_MAX_NAME_LEN = 50_000;

Expand Down

0 comments on commit c5a902d

Please sign in to comment.