From fc6ad1b2dc75927989c647767bc79dc7ef2a8215 Mon Sep 17 00:00:00 2001 From: Anna Date: Sun, 20 Jun 2021 13:27:20 -0400 Subject: [PATCH] chore: make field readonly --- XIVChatPlugin/GameFunctions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XIVChatPlugin/GameFunctions.cs b/XIVChatPlugin/GameFunctions.cs index e839f9e..cb37962 100644 --- a/XIVChatPlugin/GameFunctions.cs +++ b/XIVChatPlugin/GameFunctions.cs @@ -64,7 +64,7 @@ namespace XIVChatPlugin { private IntPtr ColourLookup { get; } private IntPtr _friendListManager = IntPtr.Zero; private IntPtr _chatManager = IntPtr.Zero; - private IntPtr _emptyXivString = IntPtr.Zero; + private readonly IntPtr _emptyXivString = IntPtr.Zero; public bool RequestingFriendList { get; private set; }