mirror of https://github.com/apache/lucene.git
LUCENE-5878 - added private constructor to avoid documentation-lint complains
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1616886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7959276928
commit
1ca2ef7eb3
|
@ -27,6 +27,10 @@ import java.io.IOException;
|
|||
*/
|
||||
public class DocToDoubleVectorUtils {
|
||||
|
||||
private DocToDoubleVectorUtils() {
|
||||
// no public constructors
|
||||
}
|
||||
|
||||
/**
|
||||
* create a sparse <code>Double</code> vector given doc and field term vectors using local frequency of the terms in the doc
|
||||
* @param docTerms term vectors for a given document
|
||||
|
|
Loading…
Reference in New Issue