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/TreeEntryTargetType.cs')
-rw-r--r--LibGit2Sharp/TreeEntryTargetType.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/LibGit2Sharp/TreeEntryTargetType.cs b/LibGit2Sharp/TreeEntryTargetType.cs
index a4e54d73..46ceb7d9 100644
--- a/LibGit2Sharp/TreeEntryTargetType.cs
+++ b/LibGit2Sharp/TreeEntryTargetType.cs
@@ -38,8 +38,9 @@ namespace LibGit2Sharp
return GitObjectType.Blob;
default:
- throw new InvalidOperationException(
- string.Format(CultureInfo.InvariantCulture, "Cannot map {0} to a GitObjectType.", type));
+ throw new InvalidOperationException(string.Format(CultureInfo.InvariantCulture,
+ "Cannot map {0} to a GitObjectType.",
+ type));
}
}
}