We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5809486 commit 08d5d31Copy full SHA for 08d5d31
src/main/java/com/fasterxml/jackson/core/StreamReadConstraints.java
@@ -511,7 +511,7 @@ public void validateDocumentLength(long len) throws StreamConstraintsException
511
*/
512
public void validateTokenCount(long count) throws StreamConstraintsException
513
{
514
- // for performance, it is assumed that users check hasMaxTokenCount()
+ // for performance reasons, it is assumed that users check hasMaxTokenCount()
515
// before calling this method - this method will not work properly if hasMaxTokenCount() is false
516
if (count > _maxTokenCount) {
517
throw _constructException(
0 commit comments