kfaraz commented on code in PR #18786:
URL: https://github.com/apache/druid/pull/18786#discussion_r2583732201


##########
services/src/test/java/org/apache/druid/testing/embedded/EmbeddedClusterApis.java:
##########
@@ -435,7 +435,12 @@ public static String newTaskId(String dataSource)
   public static Map<String, Object> deserializeJsonToMap(String payload)
   {
     try {
-      return TestHelper.JSON_MAPPER.readValue(payload, new TypeReference<>() 
{});
+      return TestHelper.JSON_MAPPER.readValue(
+          payload,
+          new TypeReference<>()
+          {
+          }
+      );

Review Comment:
   Ah, it must be because a previous commit had already broken it up into 
multiple lines.
   See the commit 
https://github.com/apache/druid/pull/18786/commits/9b43e1ce40a65be4639c3829074f1eeb7d04223f.
   
   Leaving a suggestion that should address 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to