From 2b9e8c3b4a3dac3fcb20342a6539c29e39f0468c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pawe=C5=82=20Szewczyk?= Date: Wed, 20 Dec 2017 16:31:37 +0100 Subject: [PATCH] [Usb] Change internal Dispose functions from protected to internal MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Id204e74d3296aec43dd242d73877fd1a0a3cc25c Signed-off-by: Paweł Szewczyk --- src/Tizen.System.Usb/Usb/UsbConfiguration.cs | 2 +- src/Tizen.System.Usb/Usb/UsbDevice.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tizen.System.Usb/Usb/UsbConfiguration.cs b/src/Tizen.System.Usb/Usb/UsbConfiguration.cs index d04c123..dd4fc66 100755 --- a/src/Tizen.System.Usb/Usb/UsbConfiguration.cs +++ b/src/Tizen.System.Usb/Usb/UsbConfiguration.cs @@ -159,7 +159,7 @@ namespace Tizen.System.Usb /// Releases all resources used by the ConnectionProfile. /// It should be called after finished using of the object. /// 5 - protected virtual void Dispose(bool disposing) + internal virtual void Dispose(bool disposing) { if (!disposedValue) { diff --git a/src/Tizen.System.Usb/Usb/UsbDevice.cs b/src/Tizen.System.Usb/Usb/UsbDevice.cs index 323d39b..7092d89 100755 --- a/src/Tizen.System.Usb/Usb/UsbDevice.cs +++ b/src/Tizen.System.Usb/Usb/UsbDevice.cs @@ -231,7 +231,7 @@ namespace Tizen.System.Usb /// Releases all resources used by the ConnectionProfile. /// It should be called after finished using of the object. /// 5 - protected virtual void Dispose(bool disposing) + internal virtual void Dispose(bool disposing) { if (!disposedValue) { -- 2.7.4