Skip to content

Commit

Permalink
Doc cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonWei512 committed Jul 4, 2023
1 parent 8c38257 commit ecef405
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/EnergyStarX/Interfaces/Services/IStartupService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@ public interface IStartupService

Task<StartupType> GetStartupType();

/// <summary>
/// Returns whether StartupType set successfully.
/// </summary>
Task<bool> SetStartupType(StartupType startupType);
}
4 changes: 1 addition & 3 deletions src/EnergyStarX/Services/StartupService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ public async Task<StartupType> GetStartupType()
return startupType;
}

/// <summary>
/// Returns whether StartupType set successfully.
/// </summary>
/// <inheritdoc/>
public async Task<bool> SetStartupType(StartupType startupType)
{
StartupType oldStartupType = await GetStartupType();
Expand Down

0 comments on commit ecef405

Please sign in to comment.