vvysotskyi commented on a change in pull request #2020: DRILL-7634: Rollup of
code cleanup changes
URL: https://github.com/apache/drill/pull/2020#discussion_r390840286
##########
File path:
exec/java-exec/src/main/java/org/apache/drill/exec/planner/fragment/Wrapper.java
##########
@@ -225,12 +236,12 @@ public void computeCpuResources() {
return result;
};
- Function<DrillbitEndpoint, NodeResource> cpuPerEndpoint = (endpoint) ->
new NodeResource(1, 0);
+ Function<DrillbitEndpoint, NodeResource> cpuPerEndpoint = (
+ endpoint) -> new NodeResource(1, 0);
Review comment:
Please remove brackets:
```suggestion
Function<DrillbitEndpoint, NodeResource> cpuPerEndpoint =
endpoint -> new NodeResource(1, 0);
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services