Fixed parentheses
This commit is contained in:
parent
54c3f80b60
commit
dba715b2db
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ public final class ResponseTrans implements Externalizable {
|
|||
if (what == null) {
|
||||
digest.update (new byte[0]);
|
||||
} else if (what instanceof Date) {
|
||||
digest.update (MD5Encoder.toBytes((Date) what).getTime());
|
||||
digest.update (MD5Encoder.toBytes(((Date) what).getTime()));
|
||||
} else if (what instanceof byte[]) {
|
||||
digest.update ((byte[]) what);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue