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,8 +139,9 @@ public class RangeParameters
default:
}
}
return "<";
}
return "<";
return "[";
}
public String getRangeFirstBucketEndInclusive()
{
@@ -181,8 +182,9 @@ public class RangeParameters
break;
}
}
return "<";
}
return "<";
return "[";
}
public String getRangeBucketEndInclusive()
{
@@ -218,7 +220,8 @@ public class RangeParameters
break;
}
}
return ">";
}
return ">";
return "]";
}
}