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:
authorEmeric Fermas <emeric.fermas@gmail.com>2011-10-02 21:24:41 +0400
committerEmeric Fermas <emeric.fermas@gmail.com>2011-10-02 21:24:41 +0400
commit0f02c42c5e42ac8ce3242ee247cbce25a483826a (patch)
treecd38f3f39d58238271dd44b7194757c87f827ec5 /LibGit2Sharp/Commit.cs
parentceed67f541e462bfd4ef3968e6d36e39668e881e (diff)
Enforce code style
Diffstat (limited to 'LibGit2Sharp/Commit.cs')
-rw-r--r--LibGit2Sharp/Commit.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/Commit.cs b/LibGit2Sharp/Commit.cs
index 48ad86fe..86f6247f 100644
--- a/LibGit2Sharp/Commit.cs
+++ b/LibGit2Sharp/Commit.cs
@@ -34,14 +34,14 @@ namespace LibGit2Sharp
/// </summary>
public string MessageShort
{
- get { return shortMessage.Value; }
+ get { return shortMessage.Value; }
}
private string ExtractShortMessage()
{
if (Message == null)
{
- return string.Empty; //TODO: Add some test coverage
+ return string.Empty; //TODO: Add some test coverage
}
return Message.Split('\n')[0];