Skip to content

Commit 7b69f98

Browse files
author
Oleksandr Klymenko
committed
Fix formatting for RedisFilterExpressionConverter
1 parent 93131f8 commit 7b69f98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vector-stores/spring-ai-redis-store/src/main/java/org/springframework/ai/vectorstore/RedisFilterExpressionConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ private Numeric numeric(Expression expression, Value value) {
155155
case GTE -> new Numeric(inclusive(value), POSITIVE_INFINITY);
156156
case LT -> new Numeric(NEGATIVE_INFINITY, exclusive(value));
157157
case LTE -> new Numeric(NEGATIVE_INFINITY, inclusive(value));
158-
default -> throw new UnsupportedOperationException(MessageFormat
159-
.format("Expression type {0} not supported for numeric fields", expression.type()));
158+
default -> throw new UnsupportedOperationException(
159+
MessageFormat.format("Expression type {0} not supported for numeric fields", expression.type()));
160160
};
161161
}
162162

0 commit comments

Comments
 (0)