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:
authorRune Henriksen <contact@henriksen.dk>2019-06-06 12:44:43 +0300
committerGitHub <noreply@github.com>2019-06-06 12:44:43 +0300
commit0d4b8bb27d29f4c8099b4164d04683968c058f04 (patch)
tree4f8029f65999dc3871cd46e11434c3b41a2a41e2 /Duplicati/Library
parentb41d3a3cff8fb868988845f81502ac543d80e57c (diff)
parent669a212c46184a4c5ce8be393d32e415acdb0bc9 (diff)
Merge pull request #3784 from warwickmm/remove_unused_hubic_members
Remove unused members from Duplicati.Library.Backend.HubiC project
Diffstat (limited to 'Duplicati/Library')
-rw-r--r--Duplicati/Library/Backend/HubiC/HubiCBackend.cs2
-rw-r--r--Duplicati/Library/Backend/HubiC/Strings.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/Library/Backend/HubiC/HubiCBackend.cs b/Duplicati/Library/Backend/HubiC/HubiCBackend.cs
index ecc22ba02..6b6436285 100644
--- a/Duplicati/Library/Backend/HubiC/HubiCBackend.cs
+++ b/Duplicati/Library/Backend/HubiC/HubiCBackend.cs
@@ -23,6 +23,8 @@ using System.Threading.Tasks;
namespace Duplicati.Library.Backend.HubiC
{
+ // ReSharper disable once UnusedMember.Global
+ // This class is instantiated dynamically in the BackendLoader.
public class HubiCBackend : IBackend, IStreamingBackend
{
private const string AUTHID_OPTION = "authid";
diff --git a/Duplicati/Library/Backend/HubiC/Strings.cs b/Duplicati/Library/Backend/HubiC/Strings.cs
index 1384b93d0..efd99afe9 100644
--- a/Duplicati/Library/Backend/HubiC/Strings.cs
+++ b/Duplicati/Library/Backend/HubiC/Strings.cs
@@ -20,10 +20,8 @@ namespace Duplicati.Library.Backend.Strings
internal static class HubiC {
public static string Description { get { return LC.L(@"This backend can read and write data to HubiC. Supported format is ""hubic://container/folder""."); } }
public static string DisplayName { get { return LC.L(@"HubiC"); } }
- public static string MissingAuthID(string url) { return LC.L(@"You need an AuthID, you can get it from: {0}", url); }
public static string AuthidShort { get { return LC.L(@"The authorization code"); } }
public static string AuthidLong(string url) { return LC.L(@"The authorization token retrieved from {0}", url); }
-
}
}