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/EntryExistsException.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/EntryExistsException.cs')
-rw-r--r--LibGit2Sharp/EntryExistsException.cs15
1 files changed, 5 insertions, 10 deletions
diff --git a/LibGit2Sharp/EntryExistsException.cs b/LibGit2Sharp/EntryExistsException.cs
index 9dff4d75..117cf4d8 100644
--- a/LibGit2Sharp/EntryExistsException.cs
+++ b/LibGit2Sharp/EntryExistsException.cs
@@ -14,8 +14,7 @@ namespace LibGit2Sharp
/// Initializes a new instance of the <see cref="LibGit2Sharp.EntryExistsException"/> class.
/// </summary>
public EntryExistsException()
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.EntryExistsException"/> class with a specified error message.
@@ -23,8 +22,7 @@ namespace LibGit2Sharp
/// <param name="message">A message that describes the error.</param>
public EntryExistsException(string message)
: base(message)
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.EntryExistsException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
@@ -33,8 +31,7 @@ namespace LibGit2Sharp
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
public EntryExistsException(string message, Exception innerException)
: base(message, innerException)
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.EntryExistsException"/> class with a serialized data.
@@ -43,12 +40,10 @@ namespace LibGit2Sharp
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected EntryExistsException(SerializationInfo info, StreamingContext context)
: base(info, context)
- {
- }
+ { }
internal EntryExistsException(string message, GitErrorCode code, GitErrorCategory category)
: base(message, code, category)
- {
- }
+ { }
}
}