added serialVersionUID field
This commit is contained in:
parent
2ca5232637
commit
b402e753b2
1 changed files with 3 additions and 1 deletions
|
@ -28,6 +28,8 @@ public class RequestTrans implements Externalizable {
|
||||||
// when was execution started on this request?
|
// when was execution started on this request?
|
||||||
public transient long startTime;
|
public transient long startTime;
|
||||||
|
|
||||||
|
static final long serialVersionUID = 5398880083482000580L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new Request transmitter with an empty data map.
|
* Create a new Request transmitter with an empty data map.
|
||||||
*/
|
*/
|
||||||
|
@ -59,7 +61,7 @@ public class RequestTrans implements Externalizable {
|
||||||
try {
|
try {
|
||||||
return values.get (name);
|
return values.get (name);
|
||||||
} catch (Exception x) {
|
} catch (Exception x) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue