SOLR-11388: Fix sample function

This commit is contained in:
Joel Bernstein 2017-09-23 12:47:52 -04:00
parent 5c9af8640e
commit e62f9f85d0
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class SampleEvaluator extends RecursiveObjectEvaluator implements ManyVal
Object second = null;
if(objects.length > 1) {
second = objects[2];
second = objects[1];
}
if(first instanceof RealDistribution) {