From 510ce500f69889b2f2bd555492bcfe658015594f Mon Sep 17 00:00:00 2001 From: Steve Ebersole Date: Mon, 24 Jan 2022 15:07:03 -0600 Subject: [PATCH] Change `@ParamDef#type` associated with a `@FilterDef` from `String` to `Class` in keeping with the general move away from String-based type usage in annotations --- .../orm/test/filter/OneToManyWithDynamicFilterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hibernate-core/src/test/java/org/hibernate/orm/test/filter/OneToManyWithDynamicFilterTest.java b/hibernate-core/src/test/java/org/hibernate/orm/test/filter/OneToManyWithDynamicFilterTest.java index fcfcf9f6e8..e7706b3b92 100644 --- a/hibernate-core/src/test/java/org/hibernate/orm/test/filter/OneToManyWithDynamicFilterTest.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/filter/OneToManyWithDynamicFilterTest.java @@ -102,7 +102,7 @@ public class OneToManyWithDynamicFilterTest { name = "aliveOnly", parameters = { @ParamDef(name = "aliveTimestamp", type = Timestamp.class), - @ParamDef(name = "deleted", type = NumericBooleanConverter.class) + @ParamDef(name = "deleted", type = Boolean.class) }, defaultCondition = "DELETION_TIMESTAMP = :aliveTimestamp and DELETED = :deleted") })