summaryrefslogtreecommitdiff
path: root/Juick/App.xaml.cs
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-04-03 00:24:35 +0400
committerGravatar Vitaly Takmazov2013-04-03 00:24:35 +0400
commitcc4665499b182c32481d506d2e1e65ba41a6370b (patch)
treec5ee5780a9ee91e86c8194bb7d2513562198970c /Juick/App.xaml.cs
parentfb1fab2e1593ba13fae8eae519f5482525eb68a1 (diff)
DelegateCommand<T> and ReSharper refactoring
Diffstat (limited to 'Juick/App.xaml.cs')
-rw-r--r--Juick/App.xaml.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Juick/App.xaml.cs b/Juick/App.xaml.cs
index e9fd258..8662972 100644
--- a/Juick/App.xaml.cs
+++ b/Juick/App.xaml.cs
@@ -5,15 +5,13 @@ using Juick.Classes;
using Juick.ViewModels;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
-using RestSharp;
namespace Juick
{
public partial class App : Application
{
public void NavigateTo(Uri param) {
- var current = ((App)App.Current).RootFrame;
- current.Navigate(param);
+ RootFrame.Navigate(param);
}
private static AppViewModel context = null;