Christine Poerschke created LUCENE-7005:
-------------------------------------------
Summary: TieredMergePolicy tweaks (>= vs. >, @see get vs. set)
Key: LUCENE-7005
URL: https://issues.apache.org/jira/browse/LUCENE-7005
Project: Lucene - Core
Issue Type: Task
Reporter: Christine Poerschke
Assignee: Christine Poerschke
Priority: Minor
{code}
- * @see #getMaxMergedSegmentMB */
+ * @see #setMaxMergedSegmentMB */
public double getMaxMergedSegmentMB() {
{code}
and
{code}
public TieredMergePolicy setFloorSegmentMB(double v) {
if (v <= 0.0) {
- throw new IllegalArgumentException("floorSegmentMB must be >= 0.0 (got "
+ v + ")");
+ throw new IllegalArgumentException("floorSegmentMB must be > 0.0 (got "
+ v + ")");
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]