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:
authorJ Wyman <jeremy.wyman@microsoft.com>2015-06-16 01:47:00 +0300
committerJ Wyman <jeremy.wyman@microsoft.com>2015-07-08 20:16:46 +0300
commit97256e7e208df939463ecab82f5b1484893d8b63 (patch)
treeae4d7b36838f7aece418c42f6001914ccc7e2629 /LibGit2Sharp/TreeEntryTargetType.cs
parent70d0c3b0ec244cfbe76232195400c86c47bb2577 (diff)
Applying consistant formatting across the project
Cleaning up white space usage Cleaning up `using` statements Cleaning up `cref` usage Cleaning up parameter alignment Cleaning up brace positioning
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));
}
}
}