Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/08 16:58:46 (15 years ago)
Author:
svonolfe
Message:

Fixed broken build (#372)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/JobAdapter.cs

    r971 r975  
    7474
    7575        if (!row.IsParentJobIdNull())
    76           job.parentJob = GetJobById(row.ParentJobId);
     76          job.ParentJob = GetJobById(row.ParentJobId);
    7777        else
    78           job.parentJob = null;
     78          job.ParentJob = null;
    7979
    8080        if (!row.IsResourceIdNull())
     
    102102          row.SetResourceIdNull();
    103103
    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;
    107107        } else
    108108          row.SetParentJobIdNull();
Note: See TracChangeset for help on using the changeset viewer.