You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by so...@apache.org on 2019/06/20 23:00:46 UTC

[lucene-solr] 02/02: Add missing javadocs for new BinaryDictionary.ResourceScheme

This is an automated email from the ASF dual-hosted git repository.

sokolov pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 9e017ba83cbcf1570886950fbc3c3731409fa82c
Author: Michael Sokolov <so...@amazon.com>
AuthorDate: Fri Jun 21 00:58:32 2019 +0200

    Add missing javadocs for new BinaryDictionary.ResourceScheme
---
 .../java/org/apache/lucene/analysis/ja/dict/BinaryDictionary.java    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/dict/BinaryDictionary.java b/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/dict/BinaryDictionary.java
index ca4eb2c..a0e314d 100644
--- a/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/dict/BinaryDictionary.java
+++ b/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/dict/BinaryDictionary.java
@@ -39,7 +39,10 @@ import org.apache.lucene.util.IOUtils;
  */
 public abstract class BinaryDictionary implements Dictionary {
   
-  enum ResourceScheme {
+  /**
+   * Used to specify where (dictionary) resources get loaded from.
+   */
+  public enum ResourceScheme {
     CLASSPATH, FILE
   }