- Timestamp:
- 12/11/08 16:58:46 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/JobAdapter.cs
r971 r975 74 74 75 75 if (!row.IsParentJobIdNull()) 76 job. parentJob = GetJobById(row.ParentJobId);76 job.ParentJob = GetJobById(row.ParentJobId); 77 77 else 78 job. parentJob = null;78 job.ParentJob = null; 79 79 80 80 if (!row.IsResourceIdNull()) … … 102 102 row.SetResourceIdNull(); 103 103 104 if (job. parentJob != null) {105 UpdateJob(job. parentJob);106 row.ParentJobId = job. parentJob.JobId;104 if (job.ParentJob != null) { 105 UpdateJob(job.ParentJob); 106 row.ParentJobId = job.ParentJob.JobId; 107 107 } else 108 108 row.SetParentJobIdNull();
Note: See TracChangeset
for help on using the changeset viewer.