Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5369


Ignore:
Timestamp:
01/25/11 10:44:17 (13 years ago)
Author:
mkommend
Message:

Removed unused methods in TableFileParser (ticket #1173).

File:
1 edited

Legend:

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

    r5096 r5369  
    3131    private const int BUFFER_SIZE = 1024;
    3232    private readonly char[] POSSIBLE_SEPARATORS = new char[] { ',', ';', '\t' };
    33     private const string VARIABLENAMES = "VARIABLENAMES";
    3433    private Tokenizer tokenizer;
    35     private List<string> variableNames;
    3634    private List<List<double>> rowValues;
    3735
     
    5553    }
    5654
     55    private List<string> variableNames;
    5756    public IEnumerable<string> VariableNames {
    5857      get {
     
    7170      rowValues = new List<List<double>>();
    7271      variableNames = new List<string>();
    73     }
    74 
    75     private void Reset() {
    76       variableNames.Clear();
    77       rowValues.Clear();
    7872    }
    7973
Note: See TracChangeset for help on using the changeset viewer.