Changeset 13441 for trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
- Timestamp:
- 12/07/15 17:37:45 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
r13440 r13441 227 227 } 228 228 229 this.rows = values.First().Count; 230 229 231 // after everything has been parsed make sure the lists are as compact as possible 230 232 foreach (var l in values) { … … 369 371 try { 370 372 BytesRead = reader.BaseStream.Position; 371 } 372 catch (IOException) { 373 } catch (IOException) { 373 374 BytesRead += CurrentLine.Length + 2; // guess 374 } 375 catch (NotSupportedException) { 375 } catch (NotSupportedException) { 376 376 BytesRead += CurrentLine.Length + 2; 377 377 }
Note: See TracChangeset
for help on using the changeset viewer.