mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-17 15:35:00 +00:00
Fix raw type
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1470344 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a183825420
commit
724fa9400f
@ -99,7 +99,7 @@ public class TransformedCollectionTest extends AbstractCollectionTest<Object> {
|
||||
}
|
||||
|
||||
public void testTransformedCollection_decorateTransform() {
|
||||
final Collection originalCollection = new ArrayList();
|
||||
final Collection<Object> originalCollection = new ArrayList<Object>();
|
||||
final Object[] els = getFullElements();
|
||||
for (final Object el : els) {
|
||||
originalCollection.add(el);
|
||||
|
Loading…
x
Reference in New Issue
Block a user