Changeset 8934 for trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments
- Timestamp:
- 11/21/12 18:56:24 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments/HideStarterArgument.cs
r8818 r8934 27 27 public const string TOKEN = "hideStarter"; 28 28 29 public HideStarterArgument(string value) {30 Value = string.IsNullOrEmpty(value);29 public HideStarterArgument(string value) 30 : base(string.IsNullOrEmpty(value)) { 31 31 } 32 32 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments/OpenArgument.cs
r8818 r8934 26 26 [Serializable] 27 27 public class OpenArgument : CommandLineArgument<string> { 28 public OpenArgument(string value) {29 Value = value;28 public OpenArgument(string value) 29 : base(value) { 30 30 } 31 31 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments/StartArgument.cs
r8818 r8934 27 27 public const string TOKEN = "start"; 28 28 29 public StartArgument(string value) {30 Value = value;29 public StartArgument(string value) 30 : base(value) { 31 31 } 32 32
Note: See TracChangeset
for help on using the changeset viewer.