- Timestamp:
- 08/02/12 14:48:20 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/CommandBase/ColumnGroupCommandBase.cs
r7267 r8387 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 22 using System.Linq; 25 using System.Text;26 using System.Xml;27 23 using HeuristicLab.DataImporter.Data.Model; 28 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 47 43 48 44 protected void UpdateColumnGroup() { 49 this.columnGroup = this.DataSet.ColumnGroups. Where(cg => cg.Name == this.columnGroupName).FirstOrDefault();45 this.columnGroup = this.DataSet.ColumnGroups.FirstOrDefault(cg => cg.Name == this.columnGroupName); 50 46 } 51 47
Note: See TracChangeset
for help on using the changeset viewer.