You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2021/10/22 12:18:20 UTC

[plc4x-build-tools] branch feature/mspec-ng updated: - Removed the field args and replaced everything related with type args from square brackets to round brackets

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

cdutz pushed a commit to branch feature/mspec-ng
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git


The following commit(s) were added to refs/heads/feature/mspec-ng by this push:
     new f4afd72  - Removed the field args and replaced everything related with type args from square brackets to round brackets
f4afd72 is described below

commit f4afd7228108d9c8bd04e51fb3142c6070d88b03
Author: cdutz <ch...@c-ware.de>
AuthorDate: Fri Oct 22 14:18:11 2021 +0200

    - Removed the field args and replaced everything related with type args from square brackets to round brackets
---
 .../java/org/apache/plc4x/plugins/codegenerator/types/fields/Field.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/Field.java b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/Field.java
index bb43702..7359675 100644
--- a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/Field.java
+++ b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/Field.java
@@ -38,6 +38,4 @@ public interface Field extends FieldConversions {
         return getAttribute(Constants.ATTRIBUTE_BYTE_ORDER);
     }
 
-    Optional<List<Term>> getParams();
-
 }