Removed unnecessary cast.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@550566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Klute 2007-06-25 17:58:28 +00:00
parent bf1f322ba4
commit 0191b2e01b
1 changed files with 2 additions and 2 deletions

View File

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