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:
parent
f6e06619e7
commit
cd3e480727
@ -233,8 +233,8 @@ public class Util
|
||||
*/
|
||||
public static boolean equals(final Object[] c1, final Object[] c2)
|
||||
{
|
||||
final Object[] o1 = c1.clone();
|
||||
final Object[] o2 = c2.clone();
|
||||
final Object[] o1 = (Object[]) c1.clone();
|
||||
final Object[] o2 = (Object[]) c2.clone();
|
||||
return internalEquals(o1, o2);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user