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 2018/11/24 23:28:01 UTC

[incubator-plc4x] branch develop updated: - Fixed a compilation error as InternalPlcConsumerRegistration was not extending InternalPlcMessage

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/incubator-plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new be1ea77  - Fixed a compilation error as InternalPlcConsumerRegistration was not extending InternalPlcMessage
be1ea77 is described below

commit be1ea775ae728de654eace31cf19a1ba3f113cdc
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sun Nov 25 00:27:57 2018 +0100

    - Fixed a compilation error as InternalPlcConsumerRegistration was not extending InternalPlcMessage
---
 .../apache/plc4x/java/base/model/InternalPlcConsumerRegistration.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/model/InternalPlcConsumerRegistration.java b/plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/model/InternalPlcConsumerRegistration.java
index 3b222b4..0133111 100644
--- a/plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/model/InternalPlcConsumerRegistration.java
+++ b/plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/model/InternalPlcConsumerRegistration.java
@@ -19,10 +19,11 @@
 package org.apache.plc4x.java.base.model;
 
 import org.apache.plc4x.java.api.model.PlcConsumerRegistration;
+import org.apache.plc4x.java.base.messages.InternalPlcMessage;
 
 import java.util.Collection;
 
-public interface InternalPlcConsumerRegistration extends PlcConsumerRegistration {
+public interface InternalPlcConsumerRegistration extends PlcConsumerRegistration, InternalPlcMessage {
 
     int getConsumerHash();