Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2016-09-15 12:39:27 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-09-15 12:39:27 +0300
commit0c68daff6c2204808c37a79ea4abd2a84f35f79c (patch)
tree176d4dee1d827ef5479cb4a4a12212d2ad72e9e3 /Duplicati/License
parente016045e538a27dc6dbacd1fd35932a7c736ba11 (diff)
Fixed all whitespace to be 4 spaces instead of tabs
Diffstat (limited to 'Duplicati/License')
-rw-r--r--Duplicati/License/VersionNumbers.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Duplicati/License/VersionNumbers.cs b/Duplicati/License/VersionNumbers.cs
index 40766e47a..ccfd5afcb 100644
--- a/Duplicati/License/VersionNumbers.cs
+++ b/Duplicati/License/VersionNumbers.cs
@@ -26,7 +26,7 @@ namespace Duplicati.License
public static class VersionNumbers
{
public static readonly string TAG;
- public static readonly string VERSION_NAME;
+ public static readonly string VERSION_NAME;
static VersionNumbers()
{
@@ -45,13 +45,13 @@ namespace Duplicati.License
TAG = tag.Trim();
- var v = VersionNumber;
- if (!string.IsNullOrWhiteSpace(TAG))
- v = " - " + TAG;
+ var v = VersionNumber;
+ if (!string.IsNullOrWhiteSpace(TAG))
+ v = " - " + TAG;
#if DEBUG
- v = " - debug";
+ v = " - debug";
#endif
- VERSION_NAME = v;
+ VERSION_NAME = v;
}
@@ -59,7 +59,7 @@ namespace Duplicati.License
{
get
{
- return VERSION_NAME;
+ return VERSION_NAME;
}
}