From 77e96a476683020357b2c6e6fa661024698a20d8 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 8 Nov 2002 16:38:47 +0000 Subject: [PATCH] Normalise relation modifiers to lower-case. --- src/org/z3950/zing/cql/CQLParser.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/z3950/zing/cql/CQLParser.java b/src/org/z3950/zing/cql/CQLParser.java index 6117b23..6329146 100644 --- a/src/org/z3950/zing/cql/CQLParser.java +++ b/src/org/z3950/zing/cql/CQLParser.java @@ -1,4 +1,4 @@ -// $Id: CQLParser.java,v 1.18 2002-11-08 01:10:55 mike Exp $ +// $Id: CQLParser.java,v 1.19 2002-11-08 16:38:47 mike Exp $ package org.z3950.zing.cql; import java.io.IOException; @@ -12,7 +12,7 @@ import java.io.FileNotFoundException; /** * Compiles CQL strings into parse trees of CQLNode subtypes. * - * @version $Id: CQLParser.java,v 1.18 2002-11-08 01:10:55 mike Exp $ + * @version $Id: CQLParser.java,v 1.19 2002-11-08 16:38:47 mike Exp $ * @see http://zing.z3950.org/cql/index.html */ @@ -130,7 +130,7 @@ public class CQLParser { lexer.ttype != lexer.TT_STEM) throw new CQLParseException("expected relation modifier, " + "got " + lexer.render()); - relation.addModifier(lexer.sval); + relation.addModifier(lexer.sval.toLowerCase()); match(lexer.ttype); } -- 1.7.10.4