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:01:52 UTC

[lucene-solr] branch master updated: 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 master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new aa29bea  Add missing javadocs for new BinaryDictionary.ResourceScheme
aa29bea is described below

commit aa29bea0717478c0054f8f2d2e8c12a8a0ba861c
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
   }