[Bluetooth] Fix Pascal case Capitalization Style 87/150687/2
authorGowtham Anandha Babu <gowtham.ab@samsung.com>
Mon, 18 Sep 2017 08:49:05 +0000 (14:19 +0530)
committerGowtham Anandha Babu <gowtham.ab@samsung.com>
Mon, 18 Sep 2017 09:02:57 +0000 (14:32 +0530)
Change-Id: Iea8c36cbd7f3520fc35bed3347b5ed7b986d2894

src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothOppImpl.cs

index a2fefad..97050b9 100644 (file)
@@ -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)
             {