Fixed deserialization.

This commit is contained in:
hns 2001-09-13 17:29:38 +00:00
parent a509f5735c
commit 41b057d7ee

View file

@ -114,7 +114,7 @@ public class RequestTrans implements Externalizable {
public void readExternal (ObjectInput s) throws ClassNotFoundException, IOException {
path = s.readUTF ();
session = s.readUTF ();
values = (Hashtable) s.readObject ();
values = (Map) s.readObject ();
httpMethod = s.readByte ();
}