Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/14/11 22:44:16 (13 years ago)
Author:
ascheibe
Message:

#1672

  • removed dead code
  • added Hive assembly references to Tests project
  • fixed problems found by tests
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/JobData.cs

    r6976 r6994  
    2929    protected TaskData(TaskData original, Cloner cloner) {
    3030      cloner.RegisterClonedObject(original, this);
    31       if (original.Data != null) this.Data = new byte[original.Data.Length]; Array.Copy(original.Data, this.Data, original.Data.Length);
     31      if (original.Data != null) {
     32        this.Data = new byte[original.Data.Length];
     33        Array.Copy(original.Data, this.Data, original.Data.Length);
     34      }
    3235      this.LastUpdate = original.LastUpdate;
    3336    }
Note: See TracChangeset for help on using the changeset viewer.