Search-340, amend to reflect default values for range include

This commit is contained in:
Michael Suzuki
2017-06-02 17:26:21 +01:00
parent fbde2d298c
commit 83df7da292

View File

@@ -139,9 +139,10 @@ public class RangeParameters
default: default:
} }
} }
}
return "<"; return "<";
} }
return "[";
}
public String getRangeFirstBucketEndInclusive() public String getRangeFirstBucketEndInclusive()
{ {
if(include != null && !include.isEmpty()) if(include != null && !include.isEmpty())
@@ -181,9 +182,10 @@ public class RangeParameters
break; break;
} }
} }
}
return "<"; return "<";
} }
return "[";
}
public String getRangeBucketEndInclusive() public String getRangeBucketEndInclusive()
{ {
if(include != null && !include.isEmpty()) if(include != null && !include.isEmpty())
@@ -218,7 +220,8 @@ public class RangeParameters
break; break;
} }
} }
}
return ">"; return ">";
} }
return "]";
}
} }