Fix string comparison in TypeUtils.

Original Pull Request #3177
Closes #3176
Signed-off-by: Peter-Josef Meisch <pj.meisch@sothawo.com>
(cherry picked from commit 0e1a97a27afbd793c61865e75824394e0942388a)
This commit is contained in:
Peter-Josef Meisch 2025-10-03 10:48:25 +02:00
parent 4152378d32
commit 00c99852fa
No known key found for this signature in database
GPG Key ID: DE108246970C7708

View File

@ -436,7 +436,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 {