Jackie-Jiang commented on code in PR #11763:
URL: https://github.com/apache/pinot/pull/11763#discussion_r1358911168
##########
pinot-spi/src/main/java/org/apache/pinot/spi/utils/BooleanUtils.java:
##########
@@ -64,6 +64,13 @@ public static int toInt(String booleanString) {
return toBoolean(booleanString) ? INTERNAL_TRUE : INTERNAL_FALSE;
}
+ /**
+ * Returns the int value (1 for true, 0 for false) for the given boolean
value.
+ */
+ public static int toInt(boolean booleanValue) {
Review Comment:
Removed. This is for conversion to internal value
--
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]