SOLR-9237: Make FvhContainer public

This commit is contained in:
Jan Høydahl 2016-07-16 11:51:06 +02:00
parent 2585c9f3ff
commit 4f45226174
1 changed files with 3 additions and 3 deletions

View File

@ -739,12 +739,12 @@ public class DefaultSolrHighlighter extends SolrHighlighter implements PluginInf
return new TokenOrderingFilter(tStream, 10);
}
// Wraps FVH to allow pass-by-reference
protected class FvhContainer {
// Wraps FVH to allow pass-by-reference. Public access to allow use in 3rd party subclasses
public class FvhContainer {
FastVectorHighlighter fvh;
FieldQuery fieldQuery;
FvhContainer(FastVectorHighlighter fvh, FieldQuery fieldQuery) {
public FvhContainer(FastVectorHighlighter fvh, FieldQuery fieldQuery) {
this.fvh = fvh;
this.fieldQuery = fieldQuery;
}