Skip to content

Commit

Permalink
fix ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
rjernst committed Nov 21, 2024
1 parent c49c770 commit b1f0aaf
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
import org.elasticsearch.entitlement.bridge.Java23EntitlementChecker;

public class Java23ElasticsearchEntitlementChecker extends ElasticsearchEntitlementChecker implements Java23EntitlementChecker {

public Java23ElasticsearchEntitlementChecker(PolicyManager policyManager) {
super(policyManager);
}

@Override
public void checkSystemExit(Class<?> callerClass, int status) {
// TODO: this is just an example, we shouldn't really override a method implemented in the superclass
Expand Down

0 comments on commit b1f0aaf

Please sign in to comment.