change toInclusice in terms api to default to true instead of false

This commit is contained in:
kimchy 2010-02-22 23:03:58 +02:00
parent d36f376a8e
commit 3f033a04e7
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ public class ShardTermsRequest extends BroadcastShardOperationRequest {
private boolean fromInclusive = true;
private boolean toInclusive = false;
private boolean toInclusive = true;
private String prefix;

View File

@ -111,7 +111,7 @@ public class TermsRequest extends BroadcastOperationRequest {
private String to;
private boolean toInclusive = false;
private boolean toInclusive = true;
private String prefix;