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 Hsu <kennethhsu@gmail.com>2020-03-30 05:17:37 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-03-30 05:17:37 +0300
commit87c1fa5a0441f00422b2542fe3ef9188f527f3c4 (patch)
tree5ae04de7a45ad61218e80f9b1c2f48095d425fb6 /Duplicati/CommandLine
parent8bb7b27c1f3c3ac0947c279692b2aa08a2be22be (diff)
Fix compiler warning about unused variable.
Diffstat (limited to 'Duplicati/CommandLine')
-rw-r--r--Duplicati/CommandLine/BackendTester/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/CommandLine/BackendTester/Program.cs b/Duplicati/CommandLine/BackendTester/Program.cs
index a56c131fd..3537472a4 100644
--- a/Duplicati/CommandLine/BackendTester/Program.cs
+++ b/Duplicati/CommandLine/BackendTester/Program.cs
@@ -404,7 +404,7 @@ namespace Duplicati.CommandLine.BackendTester
backend.Get(string.Format("NonExistentFile-{0}", Guid.NewGuid()), tempFile.Name);
}
}
- catch (FileMissingException ex)
+ catch (FileMissingException)
{
Console.WriteLine("Caught expected FileMissingException");
caughtExpectedException = true;