From 8fe7f3205b24464564c81f7f31e91e331f1d79a5 Mon Sep 17 00:00:00 2001 From: antonfirsov Date: Fri, 10 Apr 2026 02:05:17 +0200 Subject: [PATCH] readonly --- .../ProcessorThroughputBenchmark.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ImageSharp.Tests.ProfilingSandbox/ProcessorThroughputBenchmark.cs b/tests/ImageSharp.Tests.ProfilingSandbox/ProcessorThroughputBenchmark.cs index ddf2e2dbe6..8d3471012f 100644 --- a/tests/ImageSharp.Tests.ProfilingSandbox/ProcessorThroughputBenchmark.cs +++ b/tests/ImageSharp.Tests.ProfilingSandbox/ProcessorThroughputBenchmark.cs @@ -12,8 +12,8 @@ namespace SixLabors.ImageSharp.Tests.ProfilingSandbox; public sealed class ProcessorThroughputBenchmark { private const ulong CountingUnit = 1; - private CommandLineOptions options; - private Configuration configuration; + private readonly CommandLineOptions options; + private readonly Configuration configuration; private ulong totalPixelsInUnit; private ProcessorThroughputBenchmark(CommandLineOptions options)