Working around github strangeness

This commit is contained in:
Mike Farah
2022-01-27 13:54:29 +11:00
parent 8761920f58
commit 3ba728d40c
4 changed files with 23 additions and 3 deletions
+1
View File
@@ -25,6 +25,7 @@ func NewExpressionParser() ExpressionParser {
}
func (p *expressionParserImpl) ParseExpression(expression string) (*ExpressionNode, error) {
log.Debug("Parsing expression: [%v]", expression)
tokens, err := p.pathTokeniser.Tokenise(expression)
if err != nil {
return nil, err