Skip to content

Commit

Permalink
better boolean setting in SearchRequest #2
Browse files Browse the repository at this point in the history
  • Loading branch information
janvde committed Aug 23, 2017
1 parent 504f59b commit 7a29e16
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -379,17 +379,17 @@ public SearchRequestBuilder data(String data) {
}

public SearchRequestBuilder noAir() {
this.noAir = noAir;
this.noAir = true;
return this;
}

public SearchRequestBuilder noAirLeg() {
this.noAirLeg = noAirLeg;
this.noAirLeg = true;
return this;
}

public SearchRequestBuilder noRail() {
this.noRail = noRail;
this.noRail = true;
return this;
}

Expand Down

0 comments on commit 7a29e16

Please sign in to comment.