Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/17/17 13:21:34 (7 years ago)
Author:
jkarder
Message:

#2846:

  • only swallow a potential NullReferenceException while jobs are added
  • removed redundant check in OnContentChanged
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.cs

    r15419 r15478  
    6767      } else {
    6868        hiveExperimentListView.Content = Content.Jobs;
    69         if (Content != null) {
    70           try {
    71             await System.Threading.Tasks.Task.Run(() => Content.Refresh());
    72           } catch (Exception ex) {
    73             HandleServiceException(ex);
    74           }
     69        try {
     70          await System.Threading.Tasks.Task.Run(() => Content.Refresh());
     71        } catch (Exception ex) {
     72          HandleServiceException(ex);
    7573        }
    7674      }
Note: See TracChangeset for help on using the changeset viewer.