Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/08/11 13:41:25 (13 years ago)
Author:
ascheibe
Message:

#1233 Review comments: renamed Job to Task

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/JobData.cs

    r6372 r6721  
    2424
    2525namespace HeuristicLab.Clients.Hive {
    26   public partial class JobData : IDeepCloneable, IContent {
    27     public JobData() { }
     26  public partial class TaskData : IDeepCloneable, IContent {
     27    public TaskData() { }
    2828
    29     protected JobData(JobData original, Cloner cloner) {
     29    protected TaskData(TaskData original, Cloner cloner) {
    3030      cloner.RegisterClonedObject(original, this);
    3131      if (original.Data != null) this.Data = new byte[original.Data.Length]; Array.Copy(original.Data, this.Data, original.Data.Length);
     
    3434
    3535    public IDeepCloneable Clone(Cloner cloner) {
    36       return new JobData(this, cloner);
     36      return new TaskData(this, cloner);
    3737    }
    3838
Note: See TracChangeset for help on using the changeset viewer.