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 2020/03/12 21:59:46 UTC

[plc4x] branch develop updated: - Removed some obsolete code.

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


The following commit(s) were added to refs/heads/develop by this push:
     new b9f6a5b  - Removed some obsolete code.
b9f6a5b is described below

commit b9f6a5b45f90fa30839cefcf9cd707a9a8b9d289
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Thu Mar 12 22:59:40 2020 +0100

    - Removed some obsolete code.
---
 plc4j/examples/hello-webapp/client/src/main/royale/App.mxml | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/plc4j/examples/hello-webapp/client/src/main/royale/App.mxml b/plc4j/examples/hello-webapp/client/src/main/royale/App.mxml
index d24e4dc..d636232 100644
--- a/plc4j/examples/hello-webapp/client/src/main/royale/App.mxml
+++ b/plc4j/examples/hello-webapp/client/src/main/royale/App.mxml
@@ -53,7 +53,6 @@
         import mx.messaging.ChannelSet;
         import mx.messaging.channels.AMFChannel;
         import org.apache.royale.events.Event;
-        import utils.DynamicChannelSet;
 
         private var consumer:Consumer;
         private var channelSet:ChannelSet;
@@ -96,15 +95,6 @@
             return appurl;
         }
 
-        public static function createChannelSet():ChannelSet{
-            const channelSet:DynamicChannelSet =  new DynamicChannelSet();
-            channelSet.endPointName = "messagebroker/short-polling-amf";
-            channelSet.channelId= "shortPollingAmf";
-            channelSet.useSmallMessages = true;
-            channelSet.initialize();
-            return channelSet;
-        }
-
         private function handleSubscriptionResult(event:MessageAckEvent):void {
             trace("handleSubscriptionResult " + event);
         }