Remove commented code lines

This commit is contained in:
Bruno Bonnin 2017-01-28 10:16:43 +01:00
parent 86153a85ad
commit f5a539e6a0

View file

@ -31,11 +31,6 @@ public class ActionResponse {
private final List<AggWrapper> aggregations = new LinkedList<>();
// public ActionResponse source(String source) {
// this.source = source;
// return this;
// }
public ActionResponse succeeded(boolean succeeded) {
this.succeeded = succeeded;
return this;
@ -45,19 +40,6 @@ public class ActionResponse {
return succeeded;
}
// public String getSource() {
// return source;
// }
// public String getId() {
// return id;
// }
// public ActionResponse id(String id) {
// this.id = id;
// return this;
// }
public ActionResponse totalHits(long totalHits) {
this.totalHits = totalHits;
return this;