Restored the cast: JDK 1.4 needs it. :-(

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@550886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Klute 2007-06-26 17:58:28 +00:00
parent f6e06619e7
commit cd3e480727

View File

@ -233,8 +233,8 @@ public class Util
*/ */
public static boolean equals(final Object[] c1, final Object[] c2) public static boolean equals(final Object[] c1, final Object[] c2)
{ {
final Object[] o1 = c1.clone(); final Object[] o1 = (Object[]) c1.clone();
final Object[] o2 = c2.clone(); final Object[] o2 = (Object[]) c2.clone();
return internalEquals(o1, o2); return internalEquals(o1, o2);
} }