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:
authorMax <michal@naiman.eu>2016-10-23 00:08:27 +0300
committerMax <michal@naiman.eu>2016-10-23 00:08:27 +0300
commit5c7dfcada76101b32a1a881ef067e147f943122d (patch)
tree2bd3e26ee0734107ed3582592fd643e5b64d900b /Duplicati/Library/Interface
parentc56c8d066762ebb32d241f47ef5ccd5e65efda20 (diff)
Refactor of hyper-v backup
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/IGenericSourceModule.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Duplicati/Library/Interface/IGenericSourceModule.cs b/Duplicati/Library/Interface/IGenericSourceModule.cs
index aced0c6c5..f29161181 100644
--- a/Duplicati/Library/Interface/IGenericSourceModule.cs
+++ b/Duplicati/Library/Interface/IGenericSourceModule.cs
@@ -31,11 +31,6 @@ namespace Duplicati.Library.Interface
public interface IGenericSourceModule : IGenericModule
{
/// <summary>
- /// Gets a list of hidden arguments to prevent reporting them as unsupported
- /// </summary>
- IList<ICommandLineArgument> HiddenCommands { get; }
-
- /// <summary>
/// This method parse and alter backup source paths, apply and alter filters and returns changed or added options values.
/// </summary>
/// <param name="paths">Backup source paths</param>
@@ -47,13 +42,6 @@ namespace Duplicati.Library.Interface
/// <summary>
/// This method decides if input variables contains something to backup.
/// </summary>
- /// <param name="commandlineOptions">A set of commandline options passed to Duplicati</param>
- /// <returns>If module is going to backup anything, it returns true, otherwise false</returns>
- bool ContainFilesForBackup(Dictionary<string, string> commandlineOptions);
-
- /// <summary>
- /// This method decides if input variables contains something to backup.
- /// </summary>
/// <param name="paths">A set of source paths</param>
/// <returns>If module is going to backup anything, it returns true, otherwise false</returns>
bool ContainFilesForBackup(string[] paths);