You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/08/28 16:38:09 UTC

svn commit: r1378153 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/queryparser/ lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/ lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/nodes/

Author: rmuir
Date: Tue Aug 28 14:38:09 2012
New Revision: 1378153

URL: http://svn.apache.org/viewvc?rev=1378153&view=rev
Log:
fix broken html

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/queryparser/   (props changed)
    lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/QueryNodeParseException.java
    lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/nodes/QueryNodeImpl.java

Modified: lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/QueryNodeParseException.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/QueryNodeParseException.java?rev=1378153&r1=1378152&r2=1378153&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/QueryNodeParseException.java (original)
+++ lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/QueryNodeParseException.java Tue Aug 28 14:38:09 2012
@@ -80,7 +80,7 @@ public class QueryNodeParseException ext
   }
 
   /**
-   * For EndOfLine and EndOfFile ("<EOF>") parsing problems the last char in the
+   * For EndOfLine and EndOfFile ("&lt;EOF&gt;") parsing problems the last char in the
    * string is returned For the case where the parser is not able to figure out
    * the line and column number -1 will be returned
    * 
@@ -91,7 +91,7 @@ public class QueryNodeParseException ext
   }
 
   /**
-   * For EndOfLine and EndOfFile ("<EOF>") parsing problems the last char in the
+   * For EndOfLine and EndOfFile ("&lt;EOF&gt;") parsing problems the last char in the
    * string is returned For the case where the parser is not able to figure out
    * the line and column number -1 will be returned
    * 

Modified: lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/nodes/QueryNodeImpl.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/nodes/QueryNodeImpl.java?rev=1378153&r1=1378152&r2=1378153&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/nodes/QueryNodeImpl.java (original)
+++ lucene/dev/branches/branch_4x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/core/nodes/QueryNodeImpl.java Tue Aug 28 14:38:09 2012
@@ -211,7 +211,7 @@ public abstract class QueryNodeImpl impl
   /**
    * Every implementation of this class should return pseudo xml like this:
    * 
-   * For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>
+   * For FieldQueryNode: &lt;field start='1' end='2' field='subject' text='foo'/&gt;
    * 
    * @see org.apache.lucene.queryparser.flexible.core.nodes.QueryNode#toString()
    */