Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/12 20:16:37 (12 years ago)
Author:
jkarder
Message:

#1722: fixed creation and parsing of the resource string in the Hive Job Manager

File:
1 edited

Legend:

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

    r7582 r8109  
    493493    private static IEnumerable<string> ToResourceNameList(string resourceNames) {
    494494      if (!string.IsNullOrEmpty(resourceNames)) {
    495         return resourceNames.Split(';');
     495        return resourceNames.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
    496496      } else {
    497497        return new List<string>();
Note: See TracChangeset for help on using the changeset viewer.