Skip to content

Commit

Permalink
remove final
Browse files Browse the repository at this point in the history
  • Loading branch information
kgyrtkirk committed Jun 25, 2024
1 parent 9a4d04a commit 0d76a73
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ public boolean equals(Object obj)

}

final HookKey<RelNode> CONVERTED_PLAN = new HookKey<>("converted", RelNode.class);
final HookKey<RelNode> LOGICAL_PLAN = new HookKey<>("logicalPlan", RelNode.class);
final HookKey<RelNode> DRUID_PLAN = new HookKey<>("druidPlan", RelNode.class);
final HookKey<String> SQL = new HookKey<>("sql", String.class);
HookKey<RelNode> CONVERTED_PLAN = new HookKey<>("converted", RelNode.class);
HookKey<RelNode> LOGICAL_PLAN = new HookKey<>("logicalPlan", RelNode.class);
HookKey<RelNode> DRUID_PLAN = new HookKey<>("druidPlan", RelNode.class);
HookKey<String> SQL = new HookKey<>("sql", String.class);

void invoke(HookKey<T> key, T object);

Expand Down

0 comments on commit 0d76a73

Please sign in to comment.