Skip to content

Commit 0176b96

Browse files
committed
Fixup! Coding style.
1 parent f5871e4 commit 0176b96

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

LibGit2Sharp/Core/Proxy.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -2723,16 +2723,18 @@ public static void git_stash_drop(RepositorySafeHandle repo, int index)
27232723
}
27242724
}
27252725

2726-
static StashApplyStatus get_stash_status(int res)
2726+
private static StashApplyStatus get_stash_status(int res)
27272727
{
27282728
if (res == (int)GitErrorCode.MergeConflict)
27292729
{
27302730
return StashApplyStatus.Conflicts;
27312731
}
2732+
27322733
if (res == (int)GitErrorCode.Exists)
27332734
{
27342735
return StashApplyStatus.UntrackedExist;
27352736
}
2737+
27362738
Ensure.ZeroResult(res);
27372739
return StashApplyStatus.Applied;
27382740
}

0 commit comments

Comments
 (0)