mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-10-09 20:08:55 +00:00
Fix string comparison in TypeUtils.
Original Pull Request #3177 Closes #3176 Signed-off-by: Peter-Josef Meisch <pj.meisch@sothawo.com>
This commit is contained in:
parent
df79368299
commit
0e1a97a27a
@ -435,7 +435,7 @@ final class TypeUtils {
|
|||||||
// values taken from the RHLC implementation
|
// values taken from the RHLC implementation
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
return -2;
|
return -2;
|
||||||
} else if ("all".equals(value.toUpperCase())) {
|
} else if ("all".equals(value.toLowerCase())) {
|
||||||
return -1;
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user