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>2019-06-12 05:28:53 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2019-06-12 05:28:53 +0300
commit26b676ecae32b4d8dbfcb357cd4f550cb5a034e7 (patch)
tree53c7f15ea146086142876960865e675e705b92ed /Duplicati/Library/Backend/Rclone
parent0d4b8bb27d29f4c8099b4164d04683968c058f04 (diff)
Disable warning about unused class.
Diffstat (limited to 'Duplicati/Library/Backend/Rclone')
-rw-r--r--Duplicati/Library/Backend/Rclone/Rclone.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Duplicati/Library/Backend/Rclone/Rclone.cs b/Duplicati/Library/Backend/Rclone/Rclone.cs
index af1a535f8..d0c02625b 100644
--- a/Duplicati/Library/Backend/Rclone/Rclone.cs
+++ b/Duplicati/Library/Backend/Rclone/Rclone.cs
@@ -17,7 +17,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
#endregion
-using Duplicati.Library.Common.IO;
+using Duplicati.Library.Common.IO;
using Duplicati.Library.Interface;
using Duplicati.Library.Utility;
using Newtonsoft.Json;
@@ -32,6 +32,8 @@ using System.Threading.Tasks;
namespace Duplicati.Library.Backend
{
+ // ReSharper disable once UnusedMember.Global
+ // This class is instantiated dynamically in the BackendLoader.
public class Rclone : IBackend
{
private const string OPTION_LOCAL_REPO = "rclone-local-repository";