Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/CloneOptions.cs')
-rw-r--r--LibGit2Sharp/CloneOptions.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/LibGit2Sharp/CloneOptions.cs b/LibGit2Sharp/CloneOptions.cs
index 6b264e8a..8d260db7 100644
--- a/LibGit2Sharp/CloneOptions.cs
+++ b/LibGit2Sharp/CloneOptions.cs
@@ -54,9 +54,9 @@ namespace LibGit2Sharp
{
get
{
- return this.Checkout ?
- CheckoutStrategy.GIT_CHECKOUT_SAFE :
- CheckoutStrategy.GIT_CHECKOUT_NONE;
+ return this.Checkout
+ ? CheckoutStrategy.GIT_CHECKOUT_SAFE
+ : CheckoutStrategy.GIT_CHECKOUT_NONE;
}
}