Skip to content

Commit

Permalink
Remove unnecessary final modifier in PlanExecutor.loadExecutorClass m…
Browse files Browse the repository at this point in the history
…ethod

Remove unnecessary final modifier in PlanExecutor.loadExecutorClass private static method because private means you can not override this method.

Author: Henry Saputra <[email protected]>

Closes apache#163 from hsaputra/remove_unneeded_final_privatetatsic_planexecutor and squashes the following commits:

fe7afc7 [Henry Saputra] Remove unnecessary final modifier in PlanExecutor's private static method.
  • Loading branch information
hsaputra committed Oct 27, 2014
1 parent f2b8650 commit 73ee385
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static PlanExecutor createRemoteExecutor(String hostname, int port, Strin
}
}

private static final Class<? extends PlanExecutor> loadExecutorClass(String className) {
private static Class<? extends PlanExecutor> loadExecutorClass(String className) {
try {
Class<?> leClass = Class.forName(className);
return leClass.asSubclass(PlanExecutor.class);
Expand Down

0 comments on commit 73ee385

Please sign in to comment.