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) { if (what == null) {
digest.update (new byte[0]); digest.update (new byte[0]);
} else if (what instanceof Date) { } else if (what instanceof Date) {
digest.update (MD5Encoder.toBytes((Date) what).getTime()); digest.update (MD5Encoder.toBytes(((Date) what).getTime()));
} else if (what instanceof byte[]) { } else if (what instanceof byte[]) {
digest.update ((byte[]) what); digest.update ((byte[]) what);
} else { } else {