tflobbe commented on a change in pull request #817: SOLR-13655:Upgrade 
Collections.unModifiableSet to Set.of and Set.copyOf
URL: https://github.com/apache/lucene-solr/pull/817#discussion_r316982695
 
 

 ##########
 File path: solr/solrj/src/java/org/apache/solr/client/solrj/SolrRequest.java
 ##########
 @@ -58,11 +55,11 @@ public Principal getUserPrincipal() {
     DELETE
   };
 
-  public static final Set<String> SUPPORTED_METHODS = unmodifiableSet(new 
HashSet<>(Arrays.<String>asList(
+  public static final Set<String> SUPPORTED_METHODS = 
Set.copyOf(Arrays.<String>asList(
 
 Review comment:
   `Set.of(`?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to