deemoliu commented on code in PR #16507:
URL: https://github.com/apache/pinot/pull/16507#discussion_r2252789001
##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java:
##########
@@ -222,9 +222,9 @@ public static void
validateInstancePoolsNReplicaGroups(TableConfig tableConfig)
}
private static Set<ValidationType> parseTypesToSkipString(@Nullable String
typesToSkip) {
- return typesToSkip == null ? Collections.emptySet()
- : Arrays.stream(typesToSkip.split(",")).map(s ->
ValidationType.valueOf(s.toUpperCase()))
- .collect(Collectors.toSet());
+ return typesToSkip == null ? Collections.emptySet() :
Arrays.stream(typesToSkip.split(","))
+ .map(s -> ValidationType.valueOf(s.toUpperCase()))
Review Comment:
why format has been changed for these lines?
--
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]