Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.1
-
None
-
Java 1.7
Description
In the getById(collection<String>) function SolrClient:1172
reqParams.set("ids", (String[]) ids.toArray());
throws a ClassCastException: Object[] cannot be cast to String[]
The call for toArray should be changed to the typed version
reqParams.set("ids", ids.toArray(new String[ids.size()]));