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 2023/05/03 09:59:55 UTC

[plc4x] branch develop updated: fix(plc4go/cbus): remove duplicated codition for media transport protocol

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.git


The following commit(s) were added to refs/heads/develop by this push:
     new 5985eca350 fix(plc4go/cbus): remove duplicated codition for media transport protocol
5985eca350 is described below

commit 5985eca3504c38ce2ca22c59a2a13a050d0c33b3
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Wed May 3 11:59:39 2023 +0200

    fix(plc4go/cbus): remove duplicated codition for media transport protocol
---
 plc4go/internal/cbus/ValueHandler.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/plc4go/internal/cbus/ValueHandler.go b/plc4go/internal/cbus/ValueHandler.go
index 1bdb4638b2..feabf555f1 100644
--- a/plc4go/internal/cbus/ValueHandler.go
+++ b/plc4go/internal/cbus/ValueHandler.go
@@ -336,8 +336,6 @@ func (m ValueHandler) NewPlcValue(tag apiModel.PlcTag, value any) (apiValues.Plc
 					return nil, errors.New("Implement me") //TODO: implement me me
 				case readWriteModel.MediaTransportControlCommandType_CATEGORY_NAME.PLC4XEnumName():
 					return nil, errors.New("Implement me") //TODO: implement me me
-				case readWriteModel.MediaTransportControlCommandType_FAST_FORWARD.PLC4XEnumName():
-					return nil, errors.New("Implement me") //TODO: implement me me
 				default:
 					return nil, errors.Errorf("Unsupported command %s for %s", salCommand, tmpSalTag.application.ApplicationId())
 				}