@@ -132,24 +132,24 @@ public void buildPredicates(StringBuilder whereClauseSegment, List<Timestamp> bi
132132 // LT - Less Than
133133 // the range below the search value intersects (i.e. overlaps) with the range of the target value
134134 buildCommonClause (whereClauseSegment , bindVariables , tableAlias , DATE_VALUE , DATE_END ,
135- LT , value , value );
135+ LT , value , value );
136136 break ;
137137 case AP :
138138 // AP - Approximate - Relative
139139 // -10% of the Lower Bound
140140 // +10% of the Upper Bound
141- buildApproxRangeClause (whereClauseSegment , bindVariables , tableAlias , lowerBound , upperBound , value );
141+ buildApproxRangeClause (whereClauseSegment , bindVariables , tableAlias , lowerBound , upperBound );
142142 break ;
143143 case NE :
144144 // NE: Upper and Lower Bounds - Range Based Search
145145 // the range of the search value does not fully contain the range of the target value
146- buildNotEqualsRangeClause (whereClauseSegment , bindVariables , tableAlias , value , upperBound , value );
146+ buildNotEqualsRangeClause (whereClauseSegment , bindVariables , tableAlias , value , upperBound );
147147 break ;
148148 case EQ :
149149 default :
150150 // EQ: Upper and Lower Bounds - Range Based Search
151151 // the range of the search value fully contains the range of the target value
152- buildEqualsRangeClause (whereClauseSegment , bindVariables , tableAlias , value , upperBound , value );
152+ buildEqualsRangeClause (whereClauseSegment , bindVariables , tableAlias , value , upperBound );
153153 break ;
154154 }
155155 }
@@ -189,11 +189,10 @@ public void buildCommonClause(StringBuilder whereClauseSegment, List<Timestamp>
189189 * @param tableAlias
190190 * @param lowerBound
191191 * @param upperBound
192- * @param value
193192 */
194193 public void buildEqualsRangeClause (StringBuilder whereClauseSegment , List <Timestamp > bindVariables ,
195- String tableAlias ,
196- Instant lowerBound , Instant upperBound , Instant value ) {
194+ String tableAlias , Instant lowerBound , Instant upperBound ) {
195+ // buildEqualsRangeClause(whereClauseSegment, bindVariables, tableAlias, value, upperBound, value);
197196 // @formatter:off
198197 whereClauseSegment
199198 .append (LEFT_PAREN ).append (LEFT_PAREN )
@@ -223,10 +222,9 @@ public void buildEqualsRangeClause(StringBuilder whereClauseSegment, List<Timest
223222 * @param tableAlias
224223 * @param lowerBound
225224 * @param upperBound
226- * @param value
227225 */
228226 public void buildApproxRangeClause (StringBuilder whereClauseSegment , List <Timestamp > bindVariables ,
229- String tableAlias , Instant lowerBound , Instant upperBound , Instant value ) {
227+ String tableAlias , Instant lowerBound , Instant upperBound ) {
230228 // @formatter:off
231229 whereClauseSegment
232230 .append (LEFT_PAREN )
@@ -258,10 +256,9 @@ public void buildApproxRangeClause(StringBuilder whereClauseSegment, List<Timest
258256 * @param tableAlias
259257 * @param lowerBound
260258 * @param upperBound
261- * @param value
262259 */
263260 public void buildNotEqualsRangeClause (StringBuilder whereClauseSegment , List <Timestamp > bindVariables ,
264- String tableAlias , Instant lowerBound , Instant upperBound , Instant value ) {
261+ String tableAlias , Instant lowerBound , Instant upperBound ) {
265262 // @formatter:off
266263 whereClauseSegment
267264 .append (LEFT_PAREN )
0 commit comments