This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git
The following commit(s) were added to refs/heads/develop by this push:
new 0e931f8 chore: Made the ValidationField extend Field.
0e931f8 is described below
commit 0e931f852c1d04ea6c7d7201fcf4041a557ce58d
Author: Christofer Dutz <[email protected]>
AuthorDate: Wed Sep 3 12:58:33 2025 +0200
chore: Made the ValidationField extend Field.
---
.../plc4x/plugins/codegenerator/types/fields/ValidationField.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ValidationField.java
b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ValidationField.java
index ba9c402..8e8b836 100644
---
a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ValidationField.java
+++
b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ValidationField.java
@@ -25,7 +25,7 @@ import java.util.Optional;
/**
* Can be used to validate/assert state during parsing/serializing
*/
-public interface ValidationField extends FieldConversions {
+public interface ValidationField extends Field, FieldConversions {
/**
* @return the expression that should evaluate to true to let the
validation pass