Merge pull request #9302 from amit2103/JAVA-1558

updated java comment
This commit is contained in:
Loredana Crusoveanu 2020-05-16 13:59:52 +03:00 committed by GitHub
commit a760ac5d7e
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class CollectionToArrayListUnitTest {
Iterator<Foo> iterA = a.iterator();
Iterator<Foo> iterB = b.iterator();
while (iterA.hasNext()) {
// use '==' to test instance identity
// test instance identity
assertSame("Foo instances differ!", iterA.next(), iterB.next());
}
}