Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs

    r14901 r14927  
    137137          }
    138138        }
    139       }
    140       finally {
     139      } finally {
    141140        SuppressEvents = false;
    142141      }
     
    417416        try {
    418417          invoker.EndInvoke(ar);
    419         }
    420         catch (Exception ex) {
    421           ThreadPool.QueueUserWorkItem(delegate(object exception) { ErrorHandling.ShowErrorDialog(this, (Exception)exception); }, ex);
     418        } catch (Exception ex) {
     419          ThreadPool.QueueUserWorkItem(delegate (object exception) { ErrorHandling.ShowErrorDialog(this, (Exception)exception); }, ex);
    422420        }
    423421      }, null);
     
    506504          if (subTask is OptimizerHiveTask) {
    507505            OptimizerHiveTask ohTask = subTask as OptimizerHiveTask;
    508             ohTask.ExecuteReadActionOnItemTask(new Action(delegate() {
     506            ohTask.ExecuteReadActionOnItemTask(new Action(delegate () {
    509507              runs.AddRange(ohTask.ItemTask.Item.Runs);
    510508            }));
Note: See TracChangeset for help on using the changeset viewer.