Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16093


Ignore:
Timestamp:
08/29/18 15:38:52 (6 years ago)
Author:
jkarder
Message:

#2839: worked on hive project management

  • removed usage of null-conditional operator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2839_HiveProjectManagement/HeuristicLab.Clients.Common/3.3/SecurityExceptionUtil.cs

    r15401 r16093  
    1414        ErrorHandling.ShowErrorDialog("The security authorization request failed. Are you a Hive administrator?", ex);
    1515      } finally {
    16         finallyCallback?.Invoke();
     16        if (finallyCallback != null) finallyCallback();
    1717      }
    1818    }
     
    2626        ErrorHandling.ShowErrorDialog("The security authorization request failed. Are you a Hive administrator?", ex);
    2727      } finally {
    28         finallyCallback?.Invoke();
     28        if (finallyCallback != null) finallyCallback();
    2929      }
    3030    }
Note: See TracChangeset for help on using the changeset viewer.