From 09b124a37b006b0cc187a603a4bdf7f66571b072 Mon Sep 17 00:00:00 2001 From: Roland Praml Date: Fri, 4 Feb 2022 08:55:56 +0100 Subject: [PATCH] Match also on base platform --- .../io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java b/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java index 36c9710ac..7c15443e7 100644 --- a/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java +++ b/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java @@ -1159,7 +1159,7 @@ public class DeployBeanProperty implements DeployBeanPropertyMeta { private boolean matchPlatform(Platform[] platforms, Platform match) { for (Platform platform : platforms) { - if (platform == match) { + if (platform == match || platform == match.base()) { return true; } }