From f1276d544e6b877ba415959ce0c5a8cd2713a295 Mon Sep 17 00:00:00 2001 From: Gowtham Anandha Babu Date: Mon, 18 Sep 2017 14:19:05 +0530 Subject: [PATCH] [Bluetooth] Fix Pascal case Capitalization Style Change-Id: Iea8c36cbd7f3520fc35bed3347b5ed7b986d2894 --- .../Tizen.Network.Bluetooth/BluetoothOppImpl.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothOppImpl.cs b/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothOppImpl.cs index a2fefad..97050b9 100644 --- a/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothOppImpl.cs +++ b/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothOppImpl.cs @@ -228,12 +228,12 @@ namespace Tizen.Network.Bluetooth private BluetoothOppClientImpl() { Log.Info(Globals.LogTag, "Initializing OppClient"); - initialize(); + Initialize(); } ~BluetoothOppClientImpl() { - deinitialize(); + Deinitialize(); } internal int AddFile(string filePath) @@ -311,7 +311,7 @@ namespace Tizen.Network.Bluetooth return (int)BluetoothError.NotInitialized; } - private void initialize() + private void Initialize() { if (Globals.IsInitialize) { @@ -334,7 +334,7 @@ namespace Tizen.Network.Bluetooth } } - private void deinitialize() + private void Deinitialize() { if (Globals.IsOppClientInitialized) { -- 2.7.4