Merge pull request #2866 from FOCONIS/fix-formula-match-base-platform

FIX: @Formula / @Where Annotations should also match on base platform
This commit is contained in:
Rob Bygrave
2022-12-01 08:56:13 +13:00
committed by GitHub
@@ -1123,7 +1123,7 @@ public class DeployBeanProperty {
private boolean matchPlatform(Platform[] platforms, Platform match) {
for (Platform platform : platforms) {
if (platform == match) {
if (platform == match || platform == match.base()) {
return true;
}
}