(part of) SOLR-6203: ResponseBuilder.setSortSpec arg name tweak. (Judith Silverman via Christine Poerschke)

This commit is contained in:
Christine Poerschke 2016-10-11 11:54:36 -04:00
parent 98191225eb
commit 2bbca4c512
1 changed files with 2 additions and 2 deletions

View File

@ -383,8 +383,8 @@ public class ResponseBuilder
return sortSpec;
}
public void setSortSpec(SortSpec sort) {
this.sortSpec = sort;
public void setSortSpec(SortSpec sortSpec) {
this.sortSpec = sortSpec;
}
public GroupingSpecification getGroupingSpec() {