mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
re PR libgcj/11728 (HashMap serialization does not work)
2003-07-31 Stepan Koltsov <yozh@mx1.ru> Fix for PR libgcj/11728: From-SVN: r70037
This commit is contained in:
committed by
Tom Tromey
parent
5bea01beb9
commit
e14c33e5af
@@ -1,6 +1,6 @@
|
||||
/* HashMap.java -- a class providing a basic hashtable data structure,
|
||||
mapping Object --> Object
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -808,6 +808,7 @@ public class HashMap extends AbstractMap
|
||||
// Read and use capacity, followed by key/value pairs.
|
||||
buckets = new HashEntry[s.readInt()];
|
||||
int len = s.readInt();
|
||||
size = len;
|
||||
while (len-- > 0)
|
||||
{
|
||||
Object key = s.readObject();
|
||||
|
||||
Reference in New Issue
Block a user