This is an automated email from the ASF dual-hosted git repository. kinow 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 4a66228 Modified the error in javadoc of BulkTest new e20e373 Merge branch 'pr-114' 4a66228 is described below commit 4a662289d3129a102096e77cc27d913f3f2b4594 Author: dota17 <chenguopingd...@163.com> AuthorDate: Mon Nov 11 14:25:58 2019 +0800 Modified the error in javadoc of BulkTest --- src/test/java/org/apache/commons/collections4/BulkTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/BulkTest.java b/src/test/java/org/apache/commons/collections4/BulkTest.java index 0355464..e13e351 100644 --- a/src/test/java/org/apache/commons/collections4/BulkTest.java +++ b/src/test/java/org/apache/commons/collections4/BulkTest.java @@ -80,11 +80,11 @@ import junit.framework.TestSuite; * } * * public BulkTest bulkTestKeySet() { - * return new TestSet(makeFullMap().keySet()); + * return new SetTest(makeFullMap().keySet()); * } * * public BulkTest bulkTestEntrySet() { - * return new TestSet(makeFullMap().entrySet()); + * return new SetTest(makeFullMap().entrySet()); * } * } * </Pre>