Fixed parentheses

This commit is contained in:
hns 2002-10-29 17:39:21 +00:00
parent 54c3f80b60
commit dba715b2db

View file

@ -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 {