Avoid raw type warnings
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1034823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4fc28f2d3b
commit
eb858c2208
|
@ -340,7 +340,7 @@ public class SerializationUtilsTest extends TestCase {
|
|||
//-----------------------------------------------------------------------
|
||||
|
||||
public void testClone() throws Exception {
|
||||
HashMap<?, ?> test = SerializationUtils.clone(iMap);
|
||||
Object test = SerializationUtils.clone(iMap);
|
||||
assertNotNull(test);
|
||||
assertTrue(test instanceof HashMap<?,?>);
|
||||
assertTrue(test != iMap);
|
||||
|
|
Loading…
Reference in New Issue