Skip to content

Commit

Permalink
Renamed ReplaceService to SetService
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhonfi committed Oct 31, 2017
1 parent 2045a4d commit 517d5e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ public static ServiceManager Instance
}

/// <summary>
/// Replaces the current service with the other one passed as argument.
/// Sets the current service under management to the other passed as argument.
/// </summary>
/// <param name="service">The new service replacing the current one</param>
public void ReplaceService(Service service)
/// <param name="service">The new service to set as managed</param>
public void SetService(Service service)
{
Service = service;
}
Expand Down

0 comments on commit 517d5e7

Please sign in to comment.