Issue Details (XML | Word | Printable)

Key: QRTZNET-157
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Marko Lahma
Reporter: Konstantin Lenin
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Quartz.NET

JobDetail.Equals(object) is implemented wrong

Created: 21/Apr/09 07:27 AM   Updated: 04/May/09 09:47 AM
Component/s: Jobs
Affects Version/s: 1.0
Fix Version/s: 1.0.1

Environment: WinXP SP2 Prof, NET 3.5


 Description  « Hide
SubclassOf returns false for the same types:

 public override bool Equals(object obj)
        {
            if ((obj == null) || (!obj.GetType().IsSubclassOf(typeof
 (JobDetail))))
                return false;

            return IsEqual((JobDetail)obj);
        }

 All   Comments   Change History      Sort Order: Ascending order - Click to sort in descending order
There are no comments yet on this issue.