You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ad...@apache.org on 2011/01/18 05:28:22 UTC

svn commit: r1060188 - in /lucene/dev/branches/branch_3x/lucene/contrib: CHANGES.txt queryparser/src/test/org/apache/lucene/queryParser/core/builders/TestQueryTreeBuilder.java

Author: adrianocrestani
Date: Tue Jan 18 04:28:22 2011
New Revision: 1060188

URL: http://svn.apache.org/viewvc?rev=1060188&view=rev
Log:
-adding missing ASF license to TestQueryTreeBuilder
-fixing typo on contrib CHANGES.txt

Modified:
    lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt
    lucene/dev/branches/branch_3x/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/core/builders/TestQueryTreeBuilder.java

Modified: lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt?rev=1060188&r1=1060187&r2=1060188&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt (original)
+++ lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt Tue Jan 18 04:28:22 2011
@@ -49,7 +49,7 @@ Changes in runtime behavior
 Bug fixes
 
  * LUCENE-2855: contrib queryparser was using CharSequence as key in some internal 
-   Map instances, which was leading to incorrect behaviour, since some CharSequence
+   Map instances, which was leading to incorrect behavior, since some CharSequence
    implementors do not override hashcode and equals methods. Now the internal Maps 
    are using String instead. (Adriano Crestani)
 

Modified: lucene/dev/branches/branch_3x/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/core/builders/TestQueryTreeBuilder.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/core/builders/TestQueryTreeBuilder.java?rev=1060188&r1=1060187&r2=1060188&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/core/builders/TestQueryTreeBuilder.java (original)
+++ lucene/dev/branches/branch_3x/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/core/builders/TestQueryTreeBuilder.java Tue Jan 18 04:28:22 2011
@@ -1,5 +1,22 @@
 package org.apache.lucene.queryParser.core.builders;
 
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 import junit.framework.Assert;
 
 import org.apache.lucene.queryParser.core.QueryNodeException;