Skip to content

Commit

Permalink
#9344 changes from review
Browse files Browse the repository at this point in the history
Co-authored-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
lachlan-roberts and sbordet committed Feb 13, 2023
1 parent a5344d7 commit e623511
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ public void startPart()
reset();
_numParts++;
if (_maxParts >= 0 && _numParts > _maxParts)
throw new IllegalStateException(String.format("Form with too many keys [%d > %d]", _numParts, _maxParts));
throw new IllegalStateException(String.format("Form with too many parts [%d > %d]", _numParts, _maxParts));
}

@Override
Expand Down

0 comments on commit e623511

Please sign in to comment.