Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/06/17 10:07:50 (7 years ago)
Author:
bburlacu
Message:

#2829: Adapt the JobTaskOneFileDownloader to save an experiment instead of a run collection.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/HeuristicLab.HiveDrain/HeuristicLab.HiveDrain/JobDownloader.cs

    r15342 r15347  
    5252
    5353      foreach (Job j in jobsLoaded) {
    54         if ((!String.IsNullOrEmpty(NamePattern) && j.Name.Contains(NamePattern)) ||
    55             String.IsNullOrEmpty(NamePattern)) {
     54        if (string.IsNullOrEmpty(NamePattern) || j.Name.Contains(NamePattern)) {
    5655          string jobPath = Path.Combine(RootLocation, String.Format("{0} - {1}", j.Name, j.Id));
    5756          log.LogMessage(String.Format("\"{0}\": {1}", j.Name, j.Id));
Note: See TracChangeset for help on using the changeset viewer.