From c20ca203f2b079cf75cba571fa6b1ba5ef1dc22f Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Mon, 27 Apr 2026 16:48:56 +0200 Subject: [PATCH] ref(sentry-core): Privatize `EventProcessor` type alias This type is not actually publicly exposed, nor is it used outside the `scope::real` module, so it is safe to make it module-private. --- sentry-core/src/scope/real.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry-core/src/scope/real.rs b/sentry-core/src/scope/real.rs index 590f3921..125c8650 100644 --- a/sentry-core/src/scope/real.rs +++ b/sentry-core/src/scope/real.rs @@ -21,7 +21,7 @@ pub struct Stack { layers: Vec, } -pub type EventProcessor = Arc) -> Option> + Send + Sync>; +type EventProcessor = Arc) -> Option> + Send + Sync>; /// Holds contextual data for the current scope. ///