Remove OPP Event handler (#645)
authordh79pyun <31202060+dh79pyun@users.noreply.github.com>
Wed, 9 Jan 2019 22:50:24 +0000 (07:50 +0900)
committerGitHub <noreply@github.com>
Wed, 9 Jan 2019 22:50:24 +0000 (07:50 +0900)
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothOppImpl.cs

index 97050b9..f87b862 100644 (file)
@@ -39,7 +39,7 @@ namespace Tizen.Network.Bluetooth
             }
             remove
             {
-                //nothing to be done
+                _ConnectionRequested -= value;
             }
         }
 
@@ -51,7 +51,7 @@ namespace Tizen.Network.Bluetooth
             }
             remove
             {
-                //nothing to be done
+                _TransferProgress -= value;
             }
         }
 
@@ -63,7 +63,7 @@ namespace Tizen.Network.Bluetooth
             }
             remove
             {
-                //nothing to be done
+                _TransferFinished -= value;
             }
         }
 
@@ -197,7 +197,7 @@ namespace Tizen.Network.Bluetooth
             }
             remove
             {
-                //nothing to be done
+                _PushResponded -= value;
             }
         }
 
@@ -209,7 +209,7 @@ namespace Tizen.Network.Bluetooth
             }
             remove
             {
-                //nothing to be done
+                _PushProgress -= value;
             }
         }
 
@@ -221,7 +221,7 @@ namespace Tizen.Network.Bluetooth
             }
             remove
             {
-                //nothing to be done
+                _PushFinished -= value;
             }
         }