[mono/monodevelop] 67c9f0db: [Git] Fix failed conflicts for previous commit.

"Therzok ([email protected])" <[email protected]>
Newsgroups gmane.comp.gnome.mono.patches
Message-ID <00000141f8a4506c-c3c7b4ca-47e8-44c3-8938-84b86f1f9085-000000@email.amazonses.com>
   Branch: refs/heads/master
     Home: https://github.com/mono/monodevelop
  Compare: https://github.com/mono/monodevelop/compare/b7c0ef384e12...67c9f0db9a34

   Commit: 67c9f0db9a34286b980e3d8a1643abe180222bc4
   Author: Therzok <[email protected]> (Therzok)
     Date: 2013-10-27 06:38:58 GMT
      URL: https://github.com/mono/monodevelop/commit/67c9f0db9a34286b980e3d8a1643abe180222bc4

[Git] Fix failed conflicts for previous commit.

Changed paths:
  M main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/MyersDiff.cs

Modified: main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/MyersDiff.cs
===================================================================
@@ -171,7 +171,7 @@ public override IList<DiffEntry> Call()
 
 		/// <param name="cached">whether to view the changes you staged for the next commit</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetCached(bool cached)
+		public MyersDiff SetCached(bool cached)
 		{
 			this.cached = cached;
 			return this;
@@ -179,7 +179,7 @@ public virtual MyersDiff SetCached(bool cached)
 
 		/// <param name="pathFilter">parameter, used to limit the diff to the named path</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetPathFilter(TreeFilter pathFilter)
+		public MyersDiff SetPathFilter(TreeFilter pathFilter)
 		{
 			this.pathFilter = pathFilter;
 			return this;
@@ -187,7 +187,7 @@ public virtual MyersDiff SetPathFilter(TreeFilter pathFilter)
 
 		/// <param name="oldTree">the previous state</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetOldTree(AbstractTreeIterator oldTree)
+		public MyersDiff SetOldTree(AbstractTreeIterator oldTree)
 		{
 			this.oldTree = oldTree;
 			return this;
@@ -195,7 +195,7 @@ public virtual MyersDiff SetOldTree(AbstractTreeIterator oldTree)
 
 		/// <param name="newTree">the updated state</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetNewTree(AbstractTreeIterator newTree)
+		public MyersDiff SetNewTree(AbstractTreeIterator newTree)
 		{
 			this.newTree = newTree;
 			return this;
@@ -204,7 +204,7 @@ public virtual MyersDiff SetNewTree(AbstractTreeIterator newTree)
 		/// <param name="showNameAndStatusOnly">whether to return only names and status of changed files
 		/// 	</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetShowNameAndStatusOnly(bool showNameAndStatusOnly
+		public MyersDiff SetShowNameAndStatusOnly(bool showNameAndStatusOnly
 		                                                             )
 		{
 			this.showNameAndStatusOnly = showNameAndStatusOnly;
@@ -213,7 +213,7 @@ public virtual MyersDiff SetNewTree(AbstractTreeIterator newTree)
 
 		/// <param name="out">the stream to write line data</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetOutputStream(OutputStream @out)
+		public MyersDiff SetOutputStream(OutputStream @out)
 		{
 			this.@out = @out;
 			return this;
@@ -223,7 +223,7 @@ public virtual MyersDiff SetOutputStream(OutputStream @out)
 		/// <remarks>Set number of context lines instead of the usual three.</remarks>
 		/// <param name="contextLines">the number of context lines</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetContextLines(int contextLines)
+		public MyersDiff SetContextLines(int contextLines)
 		{
 			this.contextLines = contextLines;
 			return this;
@@ -233,7 +233,7 @@ public virtual MyersDiff SetContextLines(int contextLines)
 		/// <remarks>Set the given source prefix instead of "a/".</remarks>
 		/// <param name="sourcePrefix">the prefix</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetSourcePrefix(string sourcePrefix)
+		public MyersDiff SetSourcePrefix(string sourcePrefix)
 		{
 			this.sourcePrefix = sourcePrefix;
 			return this;
@@ -243,7 +243,7 @@ public virtual MyersDiff SetSourcePrefix(string sourcePrefix)
 		/// <remarks>Set the given destination prefix instead of "b/".</remarks>
 		/// <param name="destinationPrefix">the prefix</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetDestinationPrefix(string destinationPrefix
+		public MyersDiff SetDestinationPrefix(string destinationPrefix
 		                                                         )
 		{
 			this.destinationPrefix = destinationPrefix;
@@ -258,7 +258,7 @@ public virtual MyersDiff SetSourcePrefix(string sourcePrefix)
 		/// <seealso cref="NGit.NullProgressMonitor">NGit.NullProgressMonitor</seealso>
 		/// <param name="monitor">a progress monitor</param>
 		/// <returns>this instance</returns>
-		public virtual MyersDiff SetProgressMonitor(ProgressMonitor monitor)
+		public MyersDiff SetProgressMonitor(ProgressMonitor monitor)
 		{
 			this.monitor = monitor;
 			return this;



_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.