You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2022/03/07 13:57:18 UTC

[plc4x-build-tools] branch develop updated: fix(codegen): getAllVirtualFields returning wrong type

This is an automated email from the ASF dual-hosted git repository.

sruehl 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 3072bf1  fix(codegen): getAllVirtualFields returning wrong type
3072bf1 is described below

commit 3072bf1d41303fea0a3baf11566750074c0183c2
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Mon Mar 7 14:55:23 2022 +0100

    fix(codegen): getAllVirtualFields returning wrong type
---
 .../plugins/codegenerator/types/definitions/ComplexTypeDefinition.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/definitions/ComplexTypeDefinition.java b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/definitions/ComplexTypeDefinition.java
index 4e81a02..8f2273e 100644
--- a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/definitions/ComplexTypeDefinition.java
+++ b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/definitions/ComplexTypeDefinition.java
@@ -54,7 +54,7 @@ public interface ComplexTypeDefinition extends TypeDefinition {
      *
      * @return all virtual fields including any parents simple fields
      */
-    List<PropertyField> getAllVirtualFields();
+    List<VirtualField> getAllVirtualFields();
 
     /**
      * Get only the fields which are of type ConstField.