Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/UrlProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/UrlProperties.cs (.../UrlProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/UrlProperties.cs (.../UrlProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -12,17 +12,29 @@ [ResourcesDescription(typeof(Resources), "UrlProperties_Name_Description")] public string Name { - get { return data.Name; } - set { data.Name = value; } + get + { + return data.Name; + } + set + { + data.Name = value; + } } [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "UrlProperties_Path_DisplayName")] [ResourcesDescription(typeof(Resources), "UrlProperties_Path_Description")] public string Path { - get { return data.Path; } - set { data.Path = value; } + get + { + return data.Path; + } + set + { + data.Path = value; + } } } } \ No newline at end of file