Skip to content

Commit

Permalink
[ issue #12 ] minor renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
agazzarini committed Mar 16, 2015
1 parent 45c8dec commit 749a01a
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,19 @@ public String toString() {
* @param searcher the Solr index searcher.
* @param queryCommand the query command that will be submitted.static
* @param sort the sort specs.
* @param consumer the Graph event consumer that will be notified on relevant events.
*/
DeepPagingIterator(final SolrIndexSearcher searcher, final SolrIndexSearcher.QueryCommand queryCommand, final SortSpec sort, final GraphEventConsumer listener) {
DeepPagingIterator(
final SolrIndexSearcher searcher,
final SolrIndexSearcher.QueryCommand queryCommand,
final SortSpec sort,
final GraphEventConsumer consumer) {
this.searcher = searcher;
this.queryCommand = queryCommand;
sort.setOffset(0);
this.sentCursorMark = new CursorMark(searcher.getSchema(), sort);
this.queryCommand.setCursorMark(sentCursorMark);
this.consumer = listener;
this.consumer = consumer;
}

@Override
Expand Down

0 comments on commit 749a01a

Please sign in to comment.