Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/15 18:21:19 (9 years ago)
Author:
dglaser
Message:

#2388: Merged trunk into HiveStatistics branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs

    r12012 r12515  
    3030namespace HeuristicLab.Scripting {
    3131  [Item("C# Script", "An empty C# script.")]
    32   [Creatable("Scripts")]
     32  [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)]
    3333  [StorableClass]
    3434  public class CSharpScript : Script, IStorableContent {
     
    102102          OnScriptExecutionStarted();
    103103          compiledScript.Execute(VariableStore);
    104         } catch (Exception e) {
     104        }
     105        catch (Exception e) {
    105106          ex = e;
    106         } finally {
     107        }
     108        finally {
    107109          scriptThread = null;
    108110          OnScriptExecutionFinished(ex);
Note: See TracChangeset for help on using the changeset viewer.