Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/CompositeActivityProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/CompositeActivityProperties.cs (.../CompositeActivityProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/CompositeActivityProperties.cs (.../CompositeActivityProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -1,8 +1,8 @@ +using System.ComponentModel; using DelftTools.Shell.Core.Workflow; using DelftTools.Shell.Gui; using DelftTools.Utils; using DeltaShell.Plugins.CommonTools.Gui.Properties; -using System.ComponentModel; namespace DeltaShell.Plugins.CommonTools.Gui.Property { @@ -16,8 +16,14 @@ [ReadOnly(true)] public string Name { - get { return data.Name; } - set { data.Name = value; } + get + { + return data.Name; + } + set + { + data.Name = value; + } } } } \ No newline at end of file