We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b799a41 commit d63938dCopy full SHA for d63938d
pdfbox/src/main/java/org/apache/pdfbox/cos/COSInteger.java
@@ -71,12 +71,12 @@ public final class COSInteger extends COSNumber
71
/**
72
* Constant for an out of range value which is bigger than Log.MAX_VALUE.
73
*/
74
- protected static final COSInteger OUT_OF_RANGE_MAX = getInvalid(true);
+ static final COSInteger OUT_OF_RANGE_MAX = getInvalid(true);
75
76
77
* Constant for an out of range value which is smaller than Log.MIN_VALUE.
78
79
- protected static final COSInteger OUT_OF_RANGE_MIN = getInvalid(false);
+ static final COSInteger OUT_OF_RANGE_MIN = getInvalid(false);
80
81
82
* Returns a COSInteger instance with the given value.
0 commit comments