Remove SDNR seed code
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / dlux / dlux-web / src / common / general / common.general.filters.js
diff --git a/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/dlux-web/src/common/general/common.general.filters.js b/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/dlux-web/src/common/general/common.general.filters.js
deleted file mode 100644 (file)
index 519525c..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-define(['common/general/common.general.module'], function(general) {
-
-  // Filter to return only valid ports (like id != 0)
-  general.filter('noRootPorts', function () {
-    return function (input) {
-      if (!input) {
-        return;
-      }
-      return input.filter(function(port) {
-        return port.nodeconnector.id !== "0" ? port : null;
-      });
-    };
-  });
-
-});