diff --git a/ICD.Common.Utils/ProcessorUtils.SimplSharp.cs b/ICD.Common.Utils/ProcessorUtils.SimplSharp.cs
index 9e82a2e..ba6d97d 100644
--- a/ICD.Common.Utils/ProcessorUtils.SimplSharp.cs
+++ b/ICD.Common.Utils/ProcessorUtils.SimplSharp.cs
@@ -254,7 +254,7 @@ namespace ICD.Common.Utils
///
///
[PublicAPI]
- public static TimeSpan GetProgramUptimeFeedback()
+ public static TimeSpan GetProgramUptime()
{
if (s_ProgramUptimeStartTime == null)
{
diff --git a/ICD.Common.Utils/ProcessorUtils.Standard.cs b/ICD.Common.Utils/ProcessorUtils.Standard.cs
index ca16c55..5755431 100644
--- a/ICD.Common.Utils/ProcessorUtils.Standard.cs
+++ b/ICD.Common.Utils/ProcessorUtils.Standard.cs
@@ -140,22 +140,21 @@ namespace ICD.Common.Utils
///
///
[PublicAPI]
- public static string GetSystemUptime()
+ public static TimeSpan GetSystemUptime()
{
// TODO
- return null;
+ return default(TimeSpan);
}
///
/// Gets the uptime
///
- ///
///
[PublicAPI]
- public static string GetProgramUptimeFeedback(int progslot)
+ public static TimeSpan GetProgramUptime()
{
// TODO
- return null;
+ return default(TimeSpan);
}
#endregion