X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-sharp%2FBrowserBase.cs;h=0a1e3a761351869c8530c818838130e7b65cc700;hb=f46bf65ce34ebd9c6bbcbe3628bd243bfa4bb129;hp=2968114294c337e018d6e213a48e1df6480fe216;hpb=a4c2edcece605452c4d72da36b8c39da5e514314;p=catta diff --git a/avahi-sharp/BrowserBase.cs b/avahi-sharp/BrowserBase.cs index 2968114..0a1e3a7 100644 --- a/avahi-sharp/BrowserBase.cs +++ b/avahi-sharp/BrowserBase.cs @@ -27,7 +27,6 @@ namespace Avahi { public event EventHandler CacheExhausted; public event EventHandler AllForNow; - public event EventHandler NotFound; public event EventHandler Failed; internal void EmitBrowserEvent (BrowserEvent bevent) @@ -41,10 +40,6 @@ namespace Avahi if (AllForNow != null) AllForNow (this, new EventArgs ()); break; - case BrowserEvent.NotFound: - if (NotFound != null) - NotFound (this, new EventArgs ()); - break; case BrowserEvent.Failure: if (Failed != null) Failed (this, new EventArgs ());