mirror of https://github.com/apache/poi.git
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:
parent
898766dce5
commit
b5bee7257b
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue