WeatherInformation WP8: cleaning up using directives
authorgu.martinm@gmail.com <gu.martinm@gmail.com>
Sun, 17 Aug 2014 10:24:19 +0000 (12:24 +0200)
committergu.martinm@gmail.com <gu.martinm@gmail.com>
Sun, 17 Aug 2014 10:24:19 +0000 (12:24 +0200)
29 files changed:
WindowsPhone/WeatherInformation/WeatherInformation/App.xaml.cs
WindowsPhone/WeatherInformation/WeatherInformation/MainPage.xaml.cs
WindowsPhone/WeatherInformation/WeatherInformation/MapPage.xaml.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Clouds.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Coord.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/CurrentWeather.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Main.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Rain.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Snow.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Sys.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Weather.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/CurrentWeatherParser/Wind.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/ForecastWeatherParser/City.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/ForecastWeatherParser/Coord.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/ForecastWeatherParser/ForecastWeather.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/ForecastWeatherParser/List.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/ForecastWeatherParser/Temp.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/ForecastWeatherParser/Weather.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/Images/RemoteImagesTranslation.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/JsonDataParser/JsonParser.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/Location.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/LocationDataContext.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/Services/ServiceParser.cs
WindowsPhone/WeatherInformation/WeatherInformation/Model/WeatherData.cs
WindowsPhone/WeatherInformation/WeatherInformation/SettingsPage.xaml.cs
WindowsPhone/WeatherInformation/WeatherInformation/ViewModels/ItemViewModel.cs
WindowsPhone/WeatherInformation/WeatherInformation/ViewModels/MainViewModel.cs
WindowsPhone/WeatherInformation/WeatherInformation/ViewModels/SelectedDateViewModel.cs
WindowsPhone/WeatherInformation/WeatherInformation/ViewModels/SettingsViewModel.cs

index f567f68..5ca98eb 100644 (file)
@@ -8,15 +8,9 @@ using Microsoft.Phone.Shell;
 using System.Threading; 
 using System.Globalization; 
 using WeatherInformation.Resources;
-using WeatherInformation.ViewModels;
-using System.IO.IsolatedStorage;
-using System.IO;
 using WeatherInformation.Model;
 using WeatherInformation.Model.Services;
-using System.Threading.Tasks;
-using WeatherInformation.Model.ForecastWeatherParser;
 using WeatherInformation.Model.JsonDataParser;
-using WeatherInformation.Model.CurrentWeatherParser;
 
 namespace WeatherInformation
 {
index bddd5d3..8c2b9cf 100644 (file)
@@ -2,7 +2,6 @@
 using System;
 using System.Linq;
 using System.Globalization;
-using System.IO.IsolatedStorage;
 using System.Windows;
 using System.Windows.Controls;
 using System.Windows.Navigation;
@@ -10,10 +9,7 @@ using WeatherInformation.Model;
 using WeatherInformation.Model.Services;
 using WeatherInformation.Resources;
 using WeatherInformation.ViewModels;
-using System.Threading;
 using System.Threading.Tasks;
-using WeatherInformation.Model.ForecastWeatherParser;
-using WeatherInformation.Model.CurrentWeatherParser;
 using WeatherInformation.Model.JsonDataParser;
 
 namespace WeatherInformation
index 4f1dfd0..d67feb8 100644 (file)
@@ -1,13 +1,9 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using System.Net;
 using System.Windows;
-using System.Windows.Controls;
 using System.Windows.Navigation;
 using Microsoft.Phone.Controls;
-using Microsoft.Phone.Shell;
-using System.IO.IsolatedStorage;
 using Windows.Devices.Geolocation;
 using System.Device.Location;
 using System.Windows.Shapes;
@@ -16,7 +12,6 @@ using Microsoft.Phone.Maps.Controls;
 using WeatherInformation.Resources;
 using System.Globalization;
 using Microsoft.Phone.Maps.Services;
-using WeatherInformation.Model.Services;
 using System.Threading.Tasks;
 using WeatherInformation.Model;
 
index b62df75..36d6ae0 100644 (file)
@@ -1,8 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+using System.Collections.Generic;
 
 namespace WeatherInformation.Model.Images
 {
index 326cf0e..8c2e7a0 100644 (file)
@@ -1,6 +1,4 @@
 using Newtonsoft.Json;
-using WeatherInformation.Model.CurrentWeatherParser;
-using WeatherInformation.Model.ForecastWeatherParser;
 using System;
 
 namespace WeatherInformation.Model.JsonDataParser
index d68a1cc..6f29b0f 100644 (file)
@@ -1,11 +1,7 @@
 using System;
-using System.Collections.Generic;
 using System.ComponentModel;
 using System.Data.Linq;
 using System.Data.Linq.Mapping;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
 
 namespace WeatherInformation.Model
 {
index 2e23844..5360ed9 100644 (file)
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Data.Linq;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+using System.Data.Linq;
 
 namespace WeatherInformation.Model
 {
index 7dc52c5..e46219e 100644 (file)
@@ -2,10 +2,6 @@
 using WeatherInformation.Model.ForecastWeatherParser;
 using WeatherInformation.Model.JsonDataParser;
 using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
 
 namespace WeatherInformation.Model.Services
 {
index 1e2e56f..e486922 100644 (file)
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using WeatherInformation.Model.CurrentWeatherParser;
+using WeatherInformation.Model.CurrentWeatherParser;
 using WeatherInformation.Model.ForecastWeatherParser;
 
 namespace WeatherInformation.Model
index 8bea81b..52fb429 100644 (file)
@@ -1,16 +1,5 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Net;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Navigation;
+using System.Windows.Controls;
 using Microsoft.Phone.Controls;
-using Microsoft.Phone.Shell;
-using WeatherInformation.ViewModels;
-using System.IO.IsolatedStorage;
-using System.Collections;
-using System.Text;
 
 namespace WeatherInformation
 {
index 6b4349c..ea25aff 100644 (file)
@@ -1,12 +1,5 @@
 using System;
 using System.ComponentModel;
-using System.Diagnostics;
-using System.Net;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
 
 namespace WeatherInformation.ViewModels
 {
index 1c1b3e9..09735b3 100644 (file)
@@ -2,7 +2,6 @@
 using System.Collections.ObjectModel;
 using System.ComponentModel;
 using System.Globalization;
-using System.IO.IsolatedStorage;
 using WeatherInformation.Model;
 using WeatherInformation.Model.Images;
 using WeatherInformation.Resources;
index 6cbe528..c07f474 100644 (file)
@@ -1,14 +1,8 @@
 using System;
-using System.Collections.Generic;
 using System.ComponentModel;
 using System.Globalization;
-using System.Linq;
-using System.Runtime.Serialization;
-using System.Text;
-using System.Threading.Tasks;
 using WeatherInformation.Model;
 using WeatherInformation.Model.Images;
-using WeatherInformation.Model.Services;
 using WeatherInformation.Resources;
 
 namespace WeatherInformation.ViewModels
index cb1613e..3babef1 100644 (file)
@@ -1,14 +1,6 @@
-using Microsoft.Phone.Controls;
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
+using System;
 using System.ComponentModel;
 using System.IO.IsolatedStorage;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using WeatherInformation.Resources;
 
 namespace WeatherInformation.ViewModels
 {