Changeset 9634 for branches/HivePerformance/sources/HeuristicLab.Services.Hive/3.3/HiveOperationContext.cs
- Timestamp:
- 06/17/13 10:51:42 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HivePerformance/sources/HeuristicLab.Services.Hive/3.3/HiveOperationContext.cs
r9444 r9634 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 33 33 public static HiveOperationContext Current { 34 34 get { 35 return OperationContext.Current.Extensions.Find<HiveOperationContext>(); 35 return OperationContext.Current != null 36 ? OperationContext.Current.Extensions.Find<HiveOperationContext>() 37 : null; 36 38 } 37 39 }
Note: See TracChangeset
for help on using the changeset viewer.