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-collections.git
The following commit(s) were added to refs/heads/master by this push: new 78a83e662 Normalize spelling to US English 78a83e662 is described below commit 78a83e662b2f5c491e2a05b572cab3991d3eb3e4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 06:18:55 2023 -0400 Normalize spelling to US English --- .../commons/collections4/iterators/ObjectGraphIteratorTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java b/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java index 899a6725b..67ae468a2 100644 --- a/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java +++ b/src/test/java/org/apache/commons/collections4/iterators/ObjectGraphIteratorTest.java @@ -406,8 +406,8 @@ public class ObjectGraphIteratorTest extends AbstractIteratorTest<Object> { return color; } - void setColor(final String colour) { - this.color = colour; + void setColor(final String color) { + this.color = color; } }