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
edc66702
Commit
edc66702
authored
7 years ago
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Rename methods loading config and status.
Refers to
#18
parent
248d277f
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
ATxService/AutoTx.cs
+6
-6
6 additions, 6 deletions
ATxService/AutoTx.cs
with
6 additions
and
6 deletions
ATxService/AutoTx.cs
+
6
−
6
View file @
edc66702
...
...
@@ -187,8 +187,8 @@ namespace ATxService
/// </summary>
private
void
LoadSettings
()
{
try
{
LoadConfig
Xml
();
LoadStatus
Xml
();
LoadConfig
();
LoadStatus
();
}
catch
(
Exception
ex
)
{
Log
.
Error
(
"LoadSettings() failed: {0}\n{1}"
,
ex
.
Message
,
ex
.
StackTrace
);
...
...
@@ -200,9 +200,9 @@ namespace ATxService
}
/// <summary>
/// Load the configuration
xml file
.
/// Load the configuration.
/// </summary>
private
void
LoadConfig
Xml
()
{
private
void
LoadConfig
()
{
var
confPath
=
Path
.
Combine
(
AppDomain
.
CurrentDomain
.
BaseDirectory
,
"configuration.xml"
);
try
{
...
...
@@ -222,9 +222,9 @@ namespace ATxService
}
/// <summary>
/// Load the status
xml file
.
/// Load the status.
/// </summary>
private
void
LoadStatus
Xml
()
{
private
void
LoadStatus
()
{
var
statusPath
=
Path
.
Combine
(
AppDomain
.
CurrentDomain
.
BaseDirectory
,
"status.xml"
);
try
{
...
...
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