fix: Fixing Net Standard build, changing method name

This commit is contained in:
Chris Cameron
2019-06-05 15:01:07 -04:00
parent 02c18d152f
commit 1c38d9f04a
2 changed files with 5 additions and 6 deletions

View File

@@ -254,7 +254,7 @@ namespace ICD.Common.Utils
/// </summary>
/// <returns></returns>
[PublicAPI]
public static TimeSpan GetProgramUptimeFeedback()
public static TimeSpan GetProgramUptime()
{
if (s_ProgramUptimeStartTime == null)
{

View File

@@ -140,22 +140,21 @@ namespace ICD.Common.Utils
/// </summary>
/// <returns></returns>
[PublicAPI]
public static string GetSystemUptime()
public static TimeSpan GetSystemUptime()
{
// TODO
return null;
return default(TimeSpan);
}
/// <summary>
/// Gets the uptime
/// </summary>
/// <param name="progslot"></param>
/// <returns></returns>
[PublicAPI]
public static string GetProgramUptimeFeedback(int progslot)
public static TimeSpan GetProgramUptime()
{
// TODO
return null;
return default(TimeSpan);
}
#endregion