Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pinzart committed Nov 30, 2023
1 parent 08be589 commit f909d62
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,6 @@ public void NavigateToPage(Uri link)

protected virtual void Dispose(bool disposing)
{
System.Console.WriteLine("documentationBrowser dispose called");

// Cleanup
this.viewModel.LinkChanged -= NavigateToPage;
if (this.documentationBrowser != null)
Expand Down Expand Up @@ -174,7 +172,6 @@ async void InitializeAsync()
//Initialize the CoreWebView2 component otherwise we can't navigate to a web page
hasBeenInitialized = documentationBrowser.EnsureCoreWebView2Async().ContinueWith((_) => {

System.Console.WriteLine("documentationBrowser.EnsureCoreWebView2Async() done");
if (isDisposing) return;

this.documentationBrowser.CoreWebView2.WebMessageReceived += CoreWebView2OnWebMessageReceived;
Expand Down
2 changes: 0 additions & 2 deletions src/Notifications/NotificationCenterController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,6 @@ public void RefreshNotifications(string url="") {

private void Dispose(bool disposing)
{
System.Console.WriteLine("NotificationCenterControl dispose called");

if (notificationUIPopup == null) return;

notificationUIPopup.IsOpen = false;
Expand Down

0 comments on commit f909d62

Please sign in to comment.