Fixed deserialization.
This commit is contained in:
parent
a509f5735c
commit
41b057d7ee
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public class RequestTrans implements Externalizable {
|
||||||
public void readExternal (ObjectInput s) throws ClassNotFoundException, IOException {
|
public void readExternal (ObjectInput s) throws ClassNotFoundException, IOException {
|
||||||
path = s.readUTF ();
|
path = s.readUTF ();
|
||||||
session = s.readUTF ();
|
session = s.readUTF ();
|
||||||
values = (Hashtable) s.readObject ();
|
values = (Map) s.readObject ();
|
||||||
httpMethod = s.readByte ();
|
httpMethod = s.readByte ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue