Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9457


Ignore:
Timestamp:
05/07/13 08:28:27 (11 years ago)
Author:
gkronber
Message:

#2045 partial revert of r9449 in TableFileParser (caused a unit test failure).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs

    r9456 r9457  
    3333  public class TableFileParser {
    3434    private const int BUFFER_SIZE = 65536;
    35     private static readonly char[] POSSIBLE_SEPARATORS = new char[] { ',', ';', '\t', ' ' };
     35    private static readonly char[] POSSIBLE_SEPARATORS = new char[] { ',', ';', '\t' };
    3636    private Tokenizer tokenizer;
    3737    private List<List<object>> rowValues;
Note: See TracChangeset for help on using the changeset viewer.