risdenk commented on a change in pull request #704:
URL: https://github.com/apache/solr/pull/704#discussion_r814306725



##########
File path: solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
##########
@@ -3022,26 +3180,26 @@ private static void randomizeNumericTypesProperties() {
       private_RANDOMIZED_NUMERIC_FIELDTYPES.put(Double.class, 
"solr.DoublePointField");
       private_RANDOMIZED_NUMERIC_FIELDTYPES.put(Date.class, 
"solr.DatePointField");
       private_RANDOMIZED_NUMERIC_FIELDTYPES.put(Enum.class, 
"solr.EnumFieldType");
-      
+
       System.setProperty(NUMERIC_POINTS_SYSPROP, "true");
     }
-    for (Map.Entry<Class<?>,String> entry : 
RANDOMIZED_NUMERIC_FIELDTYPES.entrySet()) {
-      System.setProperty("solr.tests." + entry.getKey().getSimpleName() + 
"FieldType",
-                         entry.getValue());
-
+    for (Map.Entry<Class<?>, String> entry : 
RANDOMIZED_NUMERIC_FIELDTYPES.entrySet()) {
+      System.setProperty(
+          "solr.tests." + entry.getKey().getSimpleName() + "FieldType", 
entry.getValue());
     }
   }
 
-  public static DistributedUpdateProcessor 
createDistributedUpdateProcessor(SolrQueryRequest req, SolrQueryResponse rsp,
-                                                                            
UpdateRequestProcessor next) {
-    if(h.getCoreContainer().isZooKeeperAware()) {
+  public static DistributedUpdateProcessor createDistributedUpdateProcessor(
+      SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor 
next) {
+    if (h.getCoreContainer().isZooKeeperAware()) {
       return new DistributedZkUpdateProcessor(req, rsp, next);
     }
     return new DistributedUpdateProcessor(req, rsp, next);
   }
-  
+
   /**
-   * Cleans up the randomized sysproperties and variables set by {@link 
#randomizeNumericTypesProperties}
+   * Cleans up the randomized sysproperties and variables set by {@link
+   * #randomizeNumericTypesProperties}

Review comment:
       Fix this




-- 
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