Update ProfilerUtility.cs

This commit is contained in:
max 2023-07-29 17:38:55 +02:00
parent 8d567c8cda
commit fbd5a342fb

View File

@ -17,7 +17,7 @@ public ProfilerScope(string name, Object target)
Profiler.BeginSample(name, target); Profiler.BeginSample(name, target);
} }
public void Dispose() public readonly void Dispose()
{ {
Profiler.EndSample(); Profiler.EndSample();
} }