Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/23/09 13:45:51 (15 years ago)
Author:
svonolfe
Message:

Further improved handling of job objects (#372)

File:
1 edited

Legend:

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

    r1939 r2086  
    139139      return null;
    140140    }
     141
     142    public JobResult GetLastResultOf(Job job) {
     143       if (job != null) {
     144        return
     145          base.FindSingle(
     146            delegate() {
     147              return Adapter.GetDataByLastResult(job.Id);
     148            });
     149      }
     150
     151      return null;
     152    }
    141153    #endregion
    142154  }
Note: See TracChangeset for help on using the changeset viewer.