ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/JSR166TestCase.java
(Generate patch)

Comparing jsr166/src/test/tck/JSR166TestCase.java (file contents):
Revision 1.86 by jsr166, Mon May 30 22:42:22 2011 UTC vs.
Revision 1.87 by jsr166, Mon May 30 22:53:21 2011 UTC

# Line 1181 | Line 1181 | public class JSR166TestCase extends Test
1181              oos.writeObject(o);
1182              oos.flush();
1183              oos.close();
1184 <            ByteArrayInputStream bin =
1185 <                new ByteArrayInputStream(bos.toByteArray());
1186 <            ObjectInputStream ois = new ObjectInputStream(bin);
1187 <            return (T) ois.readObject();
1184 >            ObjectInputStream ois = new ObjectInputStream
1185 >                (new ByteArrayInputStream(bos.toByteArray()));
1186 >            T clone = (T) ois.readObject();
1187 >            assertSame(o.getClass(), clone.getClass());
1188 >            return clone;
1189          } catch (Throwable t) {
1190              threadUnexpectedException(t);
1191              return null;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines