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