From: Gowtham Anandha Babu Date: Mon, 18 Sep 2017 08:49:05 +0000 (+0530) Subject: [Bluetooth] Fix Pascal case Capitalization Style X-Git-Tag: preview1-00229^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F87%2F150687%2F2;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Bluetooth] Fix Pascal case Capitalization Style Change-Id: Iea8c36cbd7f3520fc35bed3347b5ed7b986d2894 --- 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) {