From 46e628ea3b88ed0755bc513b8ec5c138e034a836 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Thu, 1 Feb 2018 13:43:00 +0100 Subject: [PATCH] Make List readonly as suggested by ReSharper. --- ATxService/AutoTx.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ATxService/AutoTx.cs b/ATxService/AutoTx.cs index 72534e9..cd7348b 100644 --- a/ATxService/AutoTx.cs +++ b/ATxService/AutoTx.cs @@ -29,7 +29,7 @@ namespace ATxService private string _pathToConfig; private string _pathToStatus; - private List<string> _transferredFiles = new List<string>(); + private readonly List<string> _transferredFiles = new List<string>(); private int _txProgress; -- GitLab