mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-14 04:58:33 +00:00
fix: Fixing Net Standard build, changing method name
This commit is contained in:
parent
02c18d152f
commit
1c38d9f04a
2 changed files with 5 additions and 6 deletions
|
|
@ -254,7 +254,7 @@ namespace ICD.Common.Utils
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public static TimeSpan GetProgramUptimeFeedback()
|
public static TimeSpan GetProgramUptime()
|
||||||
{
|
{
|
||||||
if (s_ProgramUptimeStartTime == null)
|
if (s_ProgramUptimeStartTime == null)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -140,22 +140,21 @@ namespace ICD.Common.Utils
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public static string GetSystemUptime()
|
public static TimeSpan GetSystemUptime()
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
return null;
|
return default(TimeSpan);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the uptime
|
/// Gets the uptime
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="progslot"></param>
|
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public static string GetProgramUptimeFeedback(int progslot)
|
public static TimeSpan GetProgramUptime()
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
return null;
|
return default(TimeSpan);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue