Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
auto-tx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vamp
auto-tx
Commits
0d362f26
Commit
0d362f26
authored
7 years ago
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Add missing explicit "private" modifiers.
parent
958f4e30
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ATXCommon/Serializables/ServiceStatus.cs
+2
-2
2 additions, 2 deletions
ATXCommon/Serializables/ServiceStatus.cs
with
2 additions
and
2 deletions
ATXCommon/Serializables/ServiceStatus.cs
+
2
−
2
View file @
0d362f26
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment