Skip to content

Commit

Permalink
Update SudachiAttributeImpl.java
Browse files Browse the repository at this point in the history
  • Loading branch information
azagniotov committed Feb 12, 2024
1 parent 9f1ef0e commit 7555f13
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ public void clear() {

@Override
public void reflectWith(AttributeReflector attributeReflector) {
attributeReflector.reflect(SudachiAttribute.class, "dictionary", getDictionary());
// AttributeReflector is used by Solr and Elasticsearch to provide analysis output.
//
// The following code:
// attributeReflector.reflect(SudachiAttribute.class, "dictionary", getDictionary());
//
// is commented out because we do not need to reflect on the Dictionary, it is not needed for the above.
}

@Override
Expand Down

0 comments on commit 7555f13

Please sign in to comment.