Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/06/11 18:54:38 (13 years ago)
Author:
ascheibe
Message:

#1233 changed year to 2011

Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Jobs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Jobs/ItemJob.cs

    r6370 r6372  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
     27using HeuristicLab.Hive;
    2728using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Hive;
    2929
    3030namespace HeuristicLab.Clients.Hive {
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Jobs/OptimizerJob.cs

    r6111 r6372  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    5151    public OptimizerJob(IOptimizer optimizer)
    5252      : this() {
    53         this.Item = optimizer;
     53      this.Item = optimizer;
    5454
    5555      if (optimizer is Experiment) {
     
    145145      Item.ExecutionStateChanged -= new EventHandler(optimizer_ExecutionStateChanged);
    146146      Item.ExecutionTimeChanged -= new EventHandler(optimizer_ExecutionTimeChanged);
    147       Item.Started -= new EventHandler(optimizer_Started);     
     147      Item.Started -= new EventHandler(optimizer_Started);
    148148      base.DeregisterItemEvents();
    149149    }
Note: See TracChangeset for help on using the changeset viewer.