Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/04/11 10:00:38 (13 years ago)
Author:
ascheibe
Message:

#1233 adapted code to new ThreadSafeLog

File:
1 edited

Legend:

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

    r6834 r6863  
    193193      this.refreshAutomatically = true;
    194194      this.Job = new Job();
    195       this.log = new ThreadSafeLog(new Log());
     195      this.log = new ThreadSafeLog();
    196196      this.jobDownloader = new ConcurrentTaskDownloader<ItemTask>(2, 2);
    197197      this.jobDownloader.ExceptionOccured += new EventHandler<EventArgs<Exception>>(jobDownloader_ExceptionOccured);
     
    201201      this.refreshAutomatically = true;
    202202      this.Job = hiveExperiment;
    203       this.log = new ThreadSafeLog(new Log());
     203      this.log = new ThreadSafeLog();
    204204      this.jobDownloader = new ConcurrentTaskDownloader<ItemTask>(2, 2);
    205205      this.jobDownloader.ExceptionOccured += new EventHandler<EventArgs<Exception>>(jobDownloader_ExceptionOccured);
Note: See TracChangeset for help on using the changeset viewer.