ilooner commented on a change in pull request #1415: DRILL-6656: Disallow extra 
semicolons in import statements.
URL: https://github.com/apache/drill/pull/1415#discussion_r209081893
 
 

 ##########
 File path: 
contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBasePushFilterIntoScan.java
 ##########
 @@ -125,7 +125,7 @@ protected void doPushFilterToScan(final RelOptRuleCall 
call, final FilterPrel fi
     final ScanPrel newScanPrel = ScanPrel.create(scan, filter.getTraitSet(), 
newGroupsScan, scan.getRowType());
 
     // Depending on whether is a project in the middle, assign either scan or 
copy of project to childRel.
-    final RelNode childRel = project == null ? newScanPrel : 
project.copy(project.getTraitSet(), ImmutableList.of((RelNode)newScanPrel));;
+    final RelNode childRel = project == null ? newScanPrel : 
project.copy(project.getTraitSet(), ImmutableList.of((RelNode)newScanPrel));
 
 Review comment:
   Removed the cast. IntelliJ said it was unnecessary.

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to