diff --git a/actions/ql/lib/codeql/actions/security/ControlChecks.qll b/actions/ql/lib/codeql/actions/security/ControlChecks.qll index cf507b08940..4d3dbc38c65 100644 --- a/actions/ql/lib/codeql/actions/security/ControlChecks.qll +++ b/actions/ql/lib/codeql/actions/security/ControlChecks.qll @@ -179,10 +179,11 @@ private predicate protectedCaller(ExternalJob caller, Event event, string catego } cached -private newtype TCallerState = MkCallerState(ExternalJob caller, Event event, string category) { - caller.getATriggerEvent() = event and - category = any_category() -} +private newtype TCallerState = + MkCallerState(ExternalJob caller, Event event, string category) { + caller.getATriggerEvent() = event and + category = any_category() + } private class CallerState extends TCallerState, MkCallerState { ExternalJob caller;