8000 Fix compilation warnings · github/libgit2sharp@d15e27f · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit d15e27f

Browse files
committed
Fix compilation warnings
1 parent bd4e4c9 commit d15e27f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

LibGit2Sharp/Core/Proxy.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3216,7 +3216,7 @@ private enum LibGitOption
32163216
/// </summary>
32173217
/// <param name="level">The level (global/system/XDG) of the config.</param>
32183218
/// <returns>
3219-
/// The paths delimited by 'GIT_PATH_LIST_SEPARATOR' (<see cref="GlobalSettings.PathListSeparator"/>).
3219+
/// The paths delimited by 'GIT_PATH_LIST_SEPARATOR'.
32203220
/// </returns>
32213221
public static string git_libgit2_opts_get_search_path(ConfigurationLevel level)
32223222
{
@@ -3238,7 +3238,7 @@ public static string git_libgit2_opts_get_search_path(ConfigurationLevel level)
32383238
/// </summary>
32393239
/// <param name="level">The level (global/system/XDG) of the config.</param>
32403240
/// <param name="path">
3241-
/// A string of paths delimited by 'GIT_PATH_LIST_SEPARATOR' (<see cref="GlobalSettings.PathListSeparator"/>).
3241+
/// A string of paths delimited by 'GIT_PATH_LIST_SEPARATOR'.
32423242
/// Pass null to reset the search path to the default.
32433243
/// </param>
32443244
public static void git_libgit2_opts_set_search_path(ConfigurationLevel level, string path)

LibGit2Sharp/GlobalSettings.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Reflection;
5-
using System.Collections.Generic;
65
using LibGit2Sharp.Core;
76

87
namespace LibGit2Sharp

LibGit2Sharp/IDiffResult.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace LibGit2Sharp
22
{
3+
/// <summary>
4+
/// Marker interface to identify Diff results.
5+
/// </summary>
36
public interface IDiffResult
47
{ }
58
}

0 commit comments

Comments
 (0)
0