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>2019-01-13 12:31:24 +0300
committerGitHub <noreply@github.com>2019-01-13 12:31:24 +0300
commitb961fbd74491ffca36898fea4c22c9c06a0bde9c (patch)
tree27e0b33d4f5f44c170f2e676e4477b19e9391092 /Duplicati/Library/Main/Options.cs
parent65e79a276b17b8e1467c16bb711bf6af5ce936bf (diff)
parent639edc1e36e76eae09b670e0b51d0d922ece7bc5 (diff)
Merge pull request #3584 from Pectojin/remove_build_lookup_table_method
Remove unsed method and call
Diffstat (limited to 'Duplicati/Library/Main/Options.cs')
-rw-r--r--Duplicati/Library/Main/Options.cs15
1 files changed, 1 insertions, 14 deletions
diff --git a/Duplicati/Library/Main/Options.cs b/Duplicati/Library/Main/Options.cs
index 036b17abd..238cc7c54 100644
--- a/Duplicati/Library/Main/Options.cs
+++ b/Duplicati/Library/Main/Options.cs
@@ -511,7 +511,7 @@ namespace Duplicati.Library.Main
new CommandLineArgument("skip-metadata", CommandLineArgument.ArgumentType.Boolean, Strings.Options.SkipmetadataShort, Strings.Options.SkipmetadataLong, "false"),
new CommandLineArgument("restore-permissions", CommandLineArgument.ArgumentType.Boolean, Strings.Options.RestorepermissionsShort, Strings.Options.RestorepermissionsLong, "false"),
new CommandLineArgument("skip-restore-verification", CommandLineArgument.ArgumentType.Boolean, Strings.Options.SkiprestoreverificationShort, Strings.Options.SkiprestoreverificationLong, "false"),
- new CommandLineArgument("disable-filepath-cache", CommandLineArgument.ArgumentType.Boolean, Strings.Options.DisablefilepathcacheShort, Strings.Options.DisablefilepathcacheLong, "true"),
+ new CommandLineArgument("disable-filepath-cache", CommandLineArgument.ArgumentType.Boolean, Strings.Options.DisablefilepathcacheShort, Strings.Options.DisablefilepathcacheLong, "true", null, null, Strings.Options.VerboseDeprecated),
new CommandLineArgument("use-block-cache", CommandLineArgument.ArgumentType.Boolean, Strings.Options.UseblockcacheShort, Strings.Options.UseblockcacheLong, "false"),
new CommandLineArgument("changed-files", CommandLineArgument.ArgumentType.Path, Strings.Options.ChangedfilesShort, Strings.Options.ChangedfilesLong),
new CommandLineArgument("deleted-files", CommandLineArgument.ArgumentType.Path, Strings.Options.DeletedfilesShort, Strings.Options.DeletedfilesLong("changed-files")),
@@ -1576,19 +1576,6 @@ namespace Duplicati.Library.Main
}
/// <summary>
- /// Flag indicating if the filepath cache is disabled
- /// </summary>
- public bool UseFilepathCache
- {
- get
- {
- string s;
- m_options.TryGetValue("disable-filepath-cache", out s);
- return !Library.Utility.Utility.ParseBool(s, true);
- }
- }
-
- /// <summary>
/// Flag indicating if the in-memory block cache is used
/// </summary>
public bool UseBlockCache