Skip to content
Snippets Groups Projects
Commit 0d362f26 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add missing explicit "private" modifiers.

parent 958f4e30
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ namespace ATXCommon.Serializables
[Serializable]
public class ServiceStatus
{
[XmlIgnore] string _storageFile; // remember where we came from
[XmlIgnore] private string _storageFile; // remember where we came from
[XmlIgnore] private ServiceConfig _config;
[XmlIgnore] public string ValidationWarnings;
[XmlIgnore] private static readonly Logger Log = LogManager.GetCurrentClassLogger();
......@@ -25,7 +25,7 @@ namespace ATXCommon.Serializables
private string _currentTransferSrc;
private string _currentTargetTmp;
bool _transferInProgress;
private bool _transferInProgress;
private bool _serviceSuspended;
private bool _cleanShutdown;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment