7091290: fails to build jdk8 b05 Embedded build

Reviewed-by: xuelei, dholmes
This commit is contained in:
Weijun Wang 2011-09-20 12:40:23 +08:00
parent b88865d91f
commit 4d4a89de9b

View File

@ -157,7 +157,7 @@ public class Oid {
return (true);
if (other instanceof Oid)
return this.oid.equals(((Oid) other).oid);
return this.oid.equals((Object)((Oid) other).oid);
else if (other instanceof ObjectIdentifier)
return this.oid.equals(other);
else