summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs')
-rw-r--r--win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
index 572300dd6..ac1b28d94 100644
--- a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
+++ b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
@@ -96,20 +96,6 @@ namespace HandBrakeWPF.Services.Queue.Model
/// <summary>
/// The equals.
/// </summary>
- /// <param name="other">
- /// The other.
- /// </param>
- /// <returns>
- /// The <see cref="bool"/>.
- /// </returns>
- protected bool Equals(QueueTask other)
- {
- return Equals(this.ScannedSourcePath, other.ScannedSourcePath) && Equals(this.Task, other.Task) && this.status == other.status;
- }
-
- /// <summary>
- /// The equals.
- /// </summary>
/// <param name="obj">
/// The obj.
/// </param>
@@ -152,5 +138,19 @@ namespace HandBrakeWPF.Services.Queue.Model
return hashCode;
}
}
+
+ /// <summary>
+ /// The equals.
+ /// </summary>
+ /// <param name="other">
+ /// The other.
+ /// </param>
+ /// <returns>
+ /// The <see cref="bool"/>.
+ /// </returns>
+ protected bool Equals(QueueTask other)
+ {
+ return Equals(this.ScannedSourcePath, other.ScannedSourcePath) && Equals(this.Task, other.Task) && this.status == other.status;
+ }
}
} \ No newline at end of file