From 7fc4b4856e48cf94a9d214ccfda8b72983d4e770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Loba=C4=8Devski?= Date: Wed, 24 Jun 2026 17:17:16 +0000 Subject: [PATCH] Fix formatting --- actions/ql/lib/codeql/actions/security/ControlChecks.qll | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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;