Skip to content

Commit

Permalink
tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandro Oniszczuk committed Jun 6, 2011
1 parent 5ad4600 commit 847a56e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -372,7 +372,7 @@ public Query withSnippetFields(String... snippetFields) {

public Query withFetchFields(List<String> fetchFields) {
if (fetchFields == null) {
throw new NullPointerException("fetchFields must be non-null");
throw new NullPointerException("fetchFields must be non-null");
}

if (this.fetchFields == null) {
Expand Down Expand Up @@ -456,7 +456,7 @@ public Query withQueryVariable(Integer name, Float value) {
}

ParameterMap toParameterMap() {
ParameterMap params = new ParameterMap();
ParameterMap params = new ParameterMap();

if (start != null)
params.put("start", start.toString());
Expand Down

0 comments on commit 847a56e

Please sign in to comment.