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>2017-12-10 05:05:27 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2017-12-10 05:30:01 +0300
commit1c7391399dc75fb1b3ab75b4bafd414eb0c1bf28 (patch)
treea86238d3edde02cbb2d7288305b3bc1c2d6f1c3a /Duplicati/Library/Interface
parent4b108bde6bdc07e2dd02fd26be60b0731371d7ea (diff)
Remove XML documentation for unmatched parameters.
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/CommandLineArgument.cs1
-rw-r--r--Duplicati/Library/Interface/IGenericCallbackModule.cs1
2 files changed, 0 insertions, 2 deletions
diff --git a/Duplicati/Library/Interface/CommandLineArgument.cs b/Duplicati/Library/Interface/CommandLineArgument.cs
index 7931019ba..fad82bf6b 100644
--- a/Duplicati/Library/Interface/CommandLineArgument.cs
+++ b/Duplicati/Library/Interface/CommandLineArgument.cs
@@ -221,7 +221,6 @@ namespace Duplicati.Library.Interface
/// <param name="longDescription">The arguments long description</param>
/// <param name="defaultValue">The default value of the argumen</param>
/// <param name="aliases">A list of aliases for the command</param>
- /// <param name="values">A list of valid values for the command</param>
public CommandLineArgument(string name, ArgumentType type, string shortDescription, string longDescription, string defaultValue, string[] aliases)
: this(name, type, shortDescription, longDescription, defaultValue)
{
diff --git a/Duplicati/Library/Interface/IGenericCallbackModule.cs b/Duplicati/Library/Interface/IGenericCallbackModule.cs
index dcdf6690d..aba4010f8 100644
--- a/Duplicati/Library/Interface/IGenericCallbackModule.cs
+++ b/Duplicati/Library/Interface/IGenericCallbackModule.cs
@@ -32,7 +32,6 @@ namespace Duplicati.Library.Interface
/// <summary>
/// Called when the operation finishes
/// </summary>
- /// <param name="operationname">The full name of the operation</param>
/// <param name="result">The result object, if this derives from an exception, the operation failed</param>
void OnFinish(object result);
}