madrob commented on a change in pull request #216:
URL: https://github.com/apache/solr/pull/216#discussion_r669161015



##########
File path: 
solr/core/src/java/org/apache/solr/search/grouping/distributed/command/SearchGroupsFieldCommand.java
##########
@@ -123,14 +123,15 @@ private SearchGroupsFieldCommand(SchemaField field, Sort 
groupSort, int topNGrou
   }
 
   @Override
-  @SuppressWarnings({"unchecked"})
+  @SuppressWarnings("unchecked")
   public SearchGroupsFieldCommandResult result() throws IOException {
     final Collection<SearchGroup<BytesRef>> topGroups;
     if (firstPassGroupingCollector != null) {
+      Collection<?> values = (Collection<?>) 
firstPassGroupingCollector.getTopGroups(0);

Review comment:
       My IDE tells me this is a redundant cast?

##########
File path: 
solr/core/src/java/org/apache/solr/search/grouping/distributed/shardresultserializer/SearchGroupsResultTransformer.java
##########
@@ -85,7 +85,9 @@ public SearchGroupsResultTransformer(SolrIndexSearcher 
searcher) {
         searchGroup.groupValue = new BytesRef(groupValue);
       }
     }
-    searchGroup.sortValues = rawSearchGroupData.toArray(new 
Comparable[rawSearchGroupData.size()]);
+    @SuppressWarnings("unchecked")
+    Comparable<?>[] sv = (Comparable<?>[]) Array.newInstance(Comparable.class, 
rawSearchGroupData.size());

Review comment:
       I think you can do this, but I can't find a JLS reference for why it 
works.
   ```suggestion
       Comparable<?>[] sv = new Comparable<?>[rawSearchGroupData.size()];
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to