asdf2014 commented on a change in pull request #6588: autosize processing
buffers based on direct memory sizing by default
URL: https://github.com/apache/incubator-druid/pull/6588#discussion_r233700520
##########
File path:
core/src/main/java/org/apache/druid/data/input/impl/MapInputRowParser.java
##########
@@ -50,7 +51,7 @@ public MapInputRowParser(
{
final List<String> dimensions =
parseSpec.getDimensionsSpec().hasCustomDimensions()
?
parseSpec.getDimensionsSpec().getDimensionNames()
- : Lists.newArrayList(
+ : new ArrayList<>(
Review comment:
Please remove the useless `import com.google.common.collect.Lists`.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]