You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2018/11/27 11:14:39 UTC

[2/3] lucene-solr:branch_7x: fixing javadoc; added docs for parameters of new method

fixing javadoc; added docs for parameters of new method


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/02cef227
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/02cef227
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/02cef227

Branch: refs/heads/branch_7x
Commit: 02cef227e8ccdbc447d20d5dd66413c3621d259c
Parents: e5ab0d4
Author: Michael Sokolov <so...@amazon.com>
Authored: Mon Nov 19 15:46:29 2018 +0000
Committer: Mike McCandless <mi...@apache.org>
Committed: Tue Nov 27 06:04:25 2018 -0500

----------------------------------------------------------------------
 .../java/org/apache/lucene/analysis/ValidatingTokenFilter.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/02cef227/lucene/test-framework/src/java/org/apache/lucene/analysis/ValidatingTokenFilter.java
----------------------------------------------------------------------
diff --git a/lucene/test-framework/src/java/org/apache/lucene/analysis/ValidatingTokenFilter.java b/lucene/test-framework/src/java/org/apache/lucene/analysis/ValidatingTokenFilter.java
index 54b8fd3..9ab9489 100644
--- a/lucene/test-framework/src/java/org/apache/lucene/analysis/ValidatingTokenFilter.java
+++ b/lucene/test-framework/src/java/org/apache/lucene/analysis/ValidatingTokenFilter.java
@@ -181,8 +181,8 @@ public final class ValidatingTokenFilter extends TokenFilter {
 
   /**
    * Prints details about consumed tokens stored in any ValidatingTokenFilters in the input chain
-   * @param in
-   * @param out
+   * @param in the input token stream
+   * @param out the output print stream
    */
   public static void dumpValidatingTokenFilters(TokenStream in, PrintStream out) {
     if (in instanceof TokenFilter) {