You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by so...@apache.org on 2018/01/21 23:10:14 UTC

polygene-java git commit: removed unused method

Repository: polygene-java
Updated Branches:
  refs/heads/develop e1cc8a6e0 -> 1014f044b


removed unused method


Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo
Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/1014f044
Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/1014f044
Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/1014f044

Branch: refs/heads/develop
Commit: 1014f044b3a8d6cee53897398f3a34bb859c5173
Parents: e1cc8a6
Author: soelvsten <ke...@gmail.com>
Authored: Mon Jan 22 00:10:08 2018 +0100
Committer: soelvsten <ke...@gmail.com>
Committed: Mon Jan 22 00:10:08 2018 +0100

----------------------------------------------------------------------
 .../apache/polygene/runtime/structure/ModuleModel.java | 13 -------------
 1 file changed, 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/polygene-java/blob/1014f044/core/runtime/src/main/java/org/apache/polygene/runtime/structure/ModuleModel.java
----------------------------------------------------------------------
diff --git a/core/runtime/src/main/java/org/apache/polygene/runtime/structure/ModuleModel.java b/core/runtime/src/main/java/org/apache/polygene/runtime/structure/ModuleModel.java
index 0c2abac..f44f478 100644
--- a/core/runtime/src/main/java/org/apache/polygene/runtime/structure/ModuleModel.java
+++ b/core/runtime/src/main/java/org/apache/polygene/runtime/structure/ModuleModel.java
@@ -300,19 +300,6 @@ public class ModuleModel
         );
     }
 
-    public Stream<? extends ModelDescriptor> findVisibleServiceTypes()
-    {
-        return concat( visibleServices( module ),
-                       concat(
-                           layer().visibleServices( layer ),
-                           concat(
-                               layer().visibleServices( application ),
-                               layer().usedLayers().layers().flatMap( layer1 -> layer1.visibleServices( application ) )
-                           )
-                       )
-        );
-    }
-
     @Override
     public Stream<? extends ObjectDescriptor> findVisibleObjectTypes()
     {