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:
authornulltoken <emeric.fermas@gmail.com>2014-04-15 12:38:20 +0400
committernulltoken <emeric.fermas@gmail.com>2014-04-16 21:04:57 +0400
commitac394b41f27fe26a24b6d46a08b630abf02f72ab (patch)
tree0608304ecadaf4045dd5b7d3cde64dd683c98b3e /LibGit2Sharp/MergeOptions.cs
parent35ea14dd55582ba1dc4a8ad98e77ae656ee307e9 (diff)
Fix some issues pinpointed by Code Analysis
Diffstat (limited to 'LibGit2Sharp/MergeOptions.cs')
-rw-r--r--LibGit2Sharp/MergeOptions.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/LibGit2Sharp/MergeOptions.cs b/LibGit2Sharp/MergeOptions.cs
index 49096dbd..06eb13ce 100644
--- a/LibGit2Sharp/MergeOptions.cs
+++ b/LibGit2Sharp/MergeOptions.cs
@@ -4,7 +4,7 @@ namespace LibGit2Sharp
/// <summary>
/// Options controlling Merge behavior.
/// </summary>
- public class MergeOptions
+ public sealed class MergeOptions
{
/// <summary>
/// Initializes a new instance of the <see cref="MergeOptions"/> class.
@@ -21,12 +21,12 @@ namespace LibGit2Sharp
/// If this is a fast-forward merge, then there is no merge commit and this option
/// will not affect the merge.
/// </summary>
- public virtual bool CommitOnSuccess { get; set; }
+ public bool CommitOnSuccess { get; set; }
/// <summary>
/// The type of merge to perform.
/// </summary>
- public virtual FastForwardStrategy FastForwardStrategy { get; set; }
+ public FastForwardStrategy FastForwardStrategy { get; set; }
}
/// <summary>