Showing 1 of 1 files from the diff.
@@ -1,15 +1,14 @@
Loading
1 | 1 | package tools.jackson.core; |
|
2 | 2 | ||
3 | - | /* |
|
3 | + | /** |
|
4 | 4 | * The constraints to use for streaming reads: used to guard against malicious |
|
5 | 5 | * input by preventing processing of "too big" input constructs (values, |
|
6 | 6 | * structures). |
|
7 | - | * |
|
8 | - | * @since 2.15 |
|
9 | 7 | */ |
|
10 | 8 | public class StreamReadConstraints |
|
11 | 9 | implements java.io.Serializable |
|
12 | 10 | { |
|
11 | + | // !!! TODO: (maybe?) use custom serialization to reduce overhead |
|
13 | 12 | private static final long serialVersionUID = 3L; |
|
14 | 13 | ||
15 | 14 | /** |
@@ -17,7 +16,7 @@
Loading
17 | 16 | */ |
|
18 | 17 | public static final int DEFAULT_MAX_NUM_LEN = 1000; |
|
19 | 18 | ||
20 | - | final int _maxNumLen; |
|
19 | + | protected final int _maxNumLen; |
|
21 | 20 | ||
22 | 21 | private static final StreamReadConstraints DEFAULT = |
|
23 | 22 | new StreamReadConstraints(DEFAULT_MAX_NUM_LEN); |
Files | Complexity | Coverage |
---|---|---|
src/main/java/tools/jackson/core | 66.83% | 72.55% |
Project Totals (105 files) | 66.83% | 72.55% |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.