From adea2f9aecdced809fce6e5802a32df42e5cf715 Mon Sep 17 00:00:00 2001 From: Kenneth Hsu Date: Sun, 28 Apr 2019 16:22:43 -0700 Subject: [PATCH] Disable warning about unused constructors. --- Duplicati/Library/Backend/CloudFiles/CloudFiles.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Duplicati/Library/Backend/CloudFiles/CloudFiles.cs b/Duplicati/Library/Backend/CloudFiles/CloudFiles.cs index a7f694aa5..1d255533c 100644 --- a/Duplicati/Library/Backend/CloudFiles/CloudFiles.cs +++ b/Duplicati/Library/Backend/CloudFiles/CloudFiles.cs @@ -52,10 +52,14 @@ namespace Duplicati.Library.Backend private readonly byte[] m_copybuffer = new byte[Duplicati.Library.Utility.Utility.DEFAULT_BUFFER_SIZE]; + // ReSharper disable once UnusedMember.Global + // This constructor is needed by the BackendLoader. public CloudFiles() { } + // ReSharper disable once UnusedMember.Global + // This constructor is needed by the BackendLoader. public CloudFiles(string url, Dictionary options) { var uri = new Utility.Uri(url);