Selaa lähdekoodia

Destructor not needed

Tero Paananen 4 vuotta sitten
vanhempi
commit
2e09b078a4

+ 0
- 5
windows/ReactNativeWebView/ReactWebView.cpp Näytä tiedosto

@@ -30,11 +30,6 @@ namespace winrt::ReactNativeWebView::implementation {
30 30
         RegisterEvents();
31 31
     }
32 32
 
33
-    ReactWebView::~ReactWebView()
34
-    {
35
-      OutputDebugStringW(L"> ReactWebView::~ReactWebView()\n");
36
-    }
37
-
38 33
     void ReactWebView::RegisterEvents() {
39 34
         m_navigationStartingRevoker = m_webView.NavigationStarting(
40 35
             winrt::auto_revoke, [ref = get_weak()](auto const& sender, auto const& args) {

+ 0
- 1
windows/ReactNativeWebView/ReactWebView.h Näytä tiedosto

@@ -13,7 +13,6 @@ namespace winrt::ReactNativeWebView::implementation {
13 13
     public:
14 14
         ReactWebView(Microsoft::ReactNative::IReactContext const& reactContext);
15 15
         void PostMessage(winrt::hstring const& message);
16
-        ~ReactWebView();
17 16
 
18 17
     private:
19 18
         winrt::Windows::UI::Xaml::Controls::WebView m_webView{ nullptr };