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/RemoveFromIndexException.cs')
-rw-r--r--LibGit2Sharp/RemoveFromIndexException.cs12
1 files changed, 4 insertions, 8 deletions
diff --git a/LibGit2Sharp/RemoveFromIndexException.cs b/LibGit2Sharp/RemoveFromIndexException.cs
index 9f086312..a1cea4bb 100644
--- a/LibGit2Sharp/RemoveFromIndexException.cs
+++ b/LibGit2Sharp/RemoveFromIndexException.cs
@@ -14,8 +14,7 @@ namespace LibGit2Sharp
/// Initializes a new instance of the <see cref="UnmatchedPathException"/> class.
/// </summary>
public RemoveFromIndexException()
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="UnmatchedPathException"/> class with a specified error message.
@@ -23,8 +22,7 @@ namespace LibGit2Sharp
/// <param name="message">A message that describes the error.</param>
public RemoveFromIndexException(string message)
: base(message)
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2SharpException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
@@ -44,8 +42,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 RemoveFromIndexException(string message, Exception innerException)
: base(message, innerException)
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="UnmatchedPathException"/> class with a serialized data.
@@ -54,7 +51,6 @@ namespace LibGit2Sharp
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected RemoveFromIndexException(SerializationInfo info, StreamingContext context)
: base(info, context)
- {
- }
+ { }
}
}