You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/11/28 18:48:37 UTC

[02/10] lucene-solr:jira/http2: 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/34ed0154
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/34ed0154
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/34ed0154

Branch: refs/heads/jira/http2
Commit: 34ed01543a27791b6cabce696f0360fd7ff836e1
Parents: 5490790
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:00:29 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/34ed0154/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) {