From fbd5a342fb1e9741692c0d1434c9ef543abdf7fa Mon Sep 17 00:00:00 2001 From: max Date: Sat, 29 Jul 2023 17:38:55 +0200 Subject: [PATCH] Update ProfilerUtility.cs --- Runtime/ProfilerUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/ProfilerUtility.cs b/Runtime/ProfilerUtility.cs index 6c7459e..da15a6c 100644 --- a/Runtime/ProfilerUtility.cs +++ b/Runtime/ProfilerUtility.cs @@ -17,7 +17,7 @@ public ProfilerScope(string name, Object target) Profiler.BeginSample(name, target); } - public void Dispose() + public readonly void Dispose() { Profiler.EndSample(); }