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 2015/09/13 01:26:12 UTC

svn commit: r1702686 - /lucene/dev/trunk/lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Dictionary.java

Author: rmuir
Date: Sat Sep 12 23:26:11 2015
New Revision: 1702686

URL: http://svn.apache.org/r1702686
Log:
add getter method for unit testing

Modified:
    lucene/dev/trunk/lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Dictionary.java

Modified: lucene/dev/trunk/lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Dictionary.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Dictionary.java?rev=1702686&r1=1702685&r2=1702686&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Dictionary.java (original)
+++ lucene/dev/trunk/lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Dictionary.java Sat Sep 12 23:26:11 2015
@@ -1240,4 +1240,9 @@ public class Dictionary {
       }
     }
   }
+  
+  /** Returns true if this dictionary was constructed with the {@code ignoreCase} option */
+  public boolean getIgnoreCase() {
+    return ignoreCase;
+  }
 }