aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/select/parser/SelectInput.java
blob: 210b46161af3c9d2b51d48753bd570102a50b51a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.select.parser;

import com.yahoo.javacc.FastCharStream;

/**
 * @author Simon Thoresen Hult
 */
public class SelectInput extends FastCharStream implements CharStream {

    public SelectInput(String input) {
        super(input);
    }
}