From 62b31eee00e0cfbaf2fcc236317a14bc2ed9fe6c Mon Sep 17 00:00:00 2001 From: ZelteHonor Date: Tue, 12 Nov 2019 16:39:18 -0500 Subject: [PATCH] Change localize field to be readonly. (#432) --- Content.Client/Chat/ChatBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Chat/ChatBox.cs b/Content.Client/Chat/ChatBox.cs index eef74bf4f9..c0c5e46488 100644 --- a/Content.Client/Chat/ChatBox.cs +++ b/Content.Client/Chat/ChatBox.cs @@ -22,7 +22,7 @@ namespace Content.Client.Chat private readonly IList _inputHistory = new List(); - private ILocalizationManager localize = IoCManager.Resolve(); + private readonly ILocalizationManager localize = IoCManager.Resolve(); public LineEdit Input { get; private set; } public OutputPanel Contents { get; }