adarshsanjeev commented on code in PR #17493:
URL: https://github.com/apache/druid/pull/17493#discussion_r1851358589


##########
processing/src/main/java/org/apache/druid/java/util/common/StringUtils.java:
##########
@@ -349,6 +349,12 @@ public static byte[] toUtf8Nullable(@Nullable final String 
string)
     return toUtf8(string);
   }
 
+  @Nullable
+  public static String nullableValueOf(@Nullable final Object obj)
+  {
+    return obj == null ? null : obj.toString();

Review Comment:
   Ah, good to know. I'll remove this method.



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