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:
Sebastian Bazley 2010-11-13 17:49:00 +00:00
parent 4fc28f2d3b
commit eb858c2208
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ public void testDeserializeBytesBadStream() throws Exception {
//-----------------------------------------------------------------------
public void testClone() throws Exception {
HashMap<?, ?> test = SerializationUtils.clone(iMap);
Object test = SerializationUtils.clone(iMap);
assertNotNull(test);
assertTrue(test instanceof HashMap<?,?>);
assertTrue(test != iMap);