Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/13 15:34:17 (11 years ago)
Author:
sforsten
Message:

#2045: fixed described problems

File:
1 edited

Legend:

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

    r8885 r9449  
    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;
     
    457457
    458458    [Serializable]
    459     private class DataFormatException : Exception {
     459    public class DataFormatException : Exception {
    460460      private int line;
    461461      public int Line {
Note: See TracChangeset for help on using the changeset viewer.