From 6e954fd6ef85d06d6690f306a91417cef6a8604e Mon Sep 17 00:00:00 2001 From: Kimura Youichi Date: Sun, 27 Mar 2022 18:08:24 +0900 Subject: [PATCH] =?utf8?q?=E3=83=95=E3=82=A3=E3=83=BC=E3=83=AB=E3=83=89?= =?utf8?q?=E3=82=92readonly=E3=81=AB=E3=81=99=E3=82=8B=20(IDE0044)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- OpenTween.Tests/Models/PostClassTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenTween.Tests/Models/PostClassTest.cs b/OpenTween.Tests/Models/PostClassTest.cs index 26da96d2..e75575fb 100644 --- a/OpenTween.Tests/Models/PostClassTest.cs +++ b/OpenTween.Tests/Models/PostClassTest.cs @@ -34,7 +34,7 @@ namespace OpenTween.Models { private class PostClassGroup { - private Dictionary testCases; + private readonly Dictionary testCases; public PostClassGroup(params TestPostClass[] postClasses) { @@ -67,7 +67,7 @@ namespace OpenTween.Models } } - private PostClassGroup postGroup; + private readonly PostClassGroup postGroup; public PostClassTest() { -- 2.11.0