Skip to content

Commit

Permalink
Updated inline documentation of various methods of the LibraryManager…
Browse files Browse the repository at this point in the history
… class.
  • Loading branch information
xvitaly committed Nov 10, 2024
1 parent 97577a7 commit 478821f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/corelib/LibraryManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@ namespace srcrepair.core
public static class LibraryManager
{
/// <summary>
/// Checks if required library version is equal to current library version.
/// Checks if the library version matches the application version.
/// </summary>
/// <param name="RequiredVersion">Required ABI version.</param>
/// <returns>Check results.</returns>
public static bool CheckLibraryVersion()
{
return CurrentApp.AppVersion == CurrentApp.LibVersion;
}

/// <summary>
/// Checks if required library version is equal to current library version.
/// Checks if the required library version is equal with the specified library version.
/// </summary>
/// <param name="RequiredVersion">Required library version.</param>
/// <returns>Check results.</returns>
Expand Down

0 comments on commit 478821f

Please sign in to comment.