From 189618a75159d604e425c9318984dc2d8a9cc3f9 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 23 Jun 2013 11:02:53 -0400 Subject: fixes #358 - Weather validation in Server configuration --- MediaBrowser.Controller/Weather/IWeatherProvider.cs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 MediaBrowser.Controller/Weather/IWeatherProvider.cs (limited to 'MediaBrowser.Controller/Weather') diff --git a/MediaBrowser.Controller/Weather/IWeatherProvider.cs b/MediaBrowser.Controller/Weather/IWeatherProvider.cs deleted file mode 100644 index 9060e5b9cd..0000000000 --- a/MediaBrowser.Controller/Weather/IWeatherProvider.cs +++ /dev/null @@ -1,20 +0,0 @@ -using MediaBrowser.Model.Weather; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Weather -{ - /// - /// Interface IWeatherProvider - /// - public interface IWeatherProvider - { - /// - /// Gets the weather info async. - /// - /// The location. - /// The cancellation token. - /// Task{WeatherInfo}. - Task GetWeatherInfoAsync(string location, CancellationToken cancellationToken); - } -} -- cgit v1.2.3