mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
fix: Fixing Net Standard build, changing method name
This commit is contained in:
@@ -254,7 +254,7 @@ namespace ICD.Common.Utils
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[PublicAPI]
|
||||
public static TimeSpan GetProgramUptimeFeedback()
|
||||
public static TimeSpan GetProgramUptime()
|
||||
{
|
||||
if (s_ProgramUptimeStartTime == null)
|
||||
{
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user