- Timestamp:
- 08/29/18 15:38:52 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Common/3.3/SecurityExceptionUtil.cs
r15401 r16093 14 14 ErrorHandling.ShowErrorDialog("The security authorization request failed. Are you a Hive administrator?", ex); 15 15 } finally { 16 finallyCallback?.Invoke();16 if (finallyCallback != null) finallyCallback(); 17 17 } 18 18 } … … 26 26 ErrorHandling.ShowErrorDialog("The security authorization request failed. Are you a Hive administrator?", ex); 27 27 } finally { 28 finallyCallback?.Invoke();28 if (finallyCallback != null) finallyCallback(); 29 29 } 30 30 }
Note: See TracChangeset
for help on using the changeset viewer.