From e4ed6a8bb40796ad760a404a5b117c9bdfd0e75d Mon Sep 17 00:00:00 2001 From: Xjph Date: Sun, 6 Jun 2021 18:29:51 -0230 Subject: [PATCH] Remove cruft --- .../UI/ViewModels/BasicUIViewModel.cs | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/ObservatoryCore/UI/ViewModels/BasicUIViewModel.cs b/ObservatoryCore/UI/ViewModels/BasicUIViewModel.cs index c0a0c80..570a1a4 100644 --- a/ObservatoryCore/UI/ViewModels/BasicUIViewModel.cs +++ b/ObservatoryCore/UI/ViewModels/BasicUIViewModel.cs @@ -32,19 +32,6 @@ namespace Observatory.UI.ViewModels this.BasicUIGrid = new(); this.BasicUIGrid = BasicUIGrid; - - //// Create a timer and set a two second interval. - //var aTimer = new System.Timers.Timer(); - //aTimer.Interval = 2000; - - //// Hook up the Elapsed event for the timer. - //aTimer.Elapsed += OnTimedEvent; - - //// Have the timer fire repeated events (true is the default) - //aTimer.AutoReset = true; - - //// Start the timer - //aTimer.Enabled = true; } private PluginUI.UIType uiType; @@ -58,10 +45,5 @@ namespace Observatory.UI.ViewModels this.RaisePropertyChanged(nameof(UIType)); } } - - private void OnTimedEvent(object sender, System.Timers.ElapsedEventArgs e) - { - basicUIGrid.Count(); - } } }