This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-digester.git
The following commit(s) were added to refs/heads/master by this push: new 9cc5144a Fix typos in comments 9cc5144a is described below commit 9cc5144a27821c6d473ce117b6b3c748be7c7723 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 21 09:14:44 2024 -0400 Fix typos in comments --- .../org/apache/commons/digester3/substitution/VariableAttributes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/substitution/VariableAttributes.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/substitution/VariableAttributes.java index cbc77508..f987a89d 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/substitution/VariableAttributes.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/substitution/VariableAttributes.java @@ -135,7 +135,7 @@ public class VariableAttributes // call to set(index, s) works ok. // // Unfortunately, there is no easy way to set the size of - // an arraylist; we must repeatedly add null elements to it.. + // an arraylist; we must repeatedly add null elements to it. values.ensureCapacity( index + 1 ); for ( int i = values.size(); i <= index; ++i ) {