Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 committed Oct 8, 2024
1 parent adb8ea8 commit 2e68fdc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -736,13 +736,15 @@ public static List<Shape> getTopologicallyOrderedOrphanedShapesForService(

for (Shape shape : topologicalIndex.getOrderedShapes()) {
if (orphanedShapes.contains(shape)
&& shape.getId().getNamespace().equals(serviceShape.getId().getNamespace())) {
&& shape.getId().getNamespace().equals(serviceShape.getId().getNamespace())
&& !shape.isMemberShape()) {
orderedShapes.add(shape);
}
}
for (Shape shape : topologicalIndex.getRecursiveShapes()) {
if (orphanedShapes.contains(shape)
&& shape.getId().getNamespace().equals(serviceShape.getId().getNamespace())) {
&& shape.getId().getNamespace().equals(serviceShape.getId().getNamespace())
&& !shape.isMemberShape()) {
orderedShapes.add(shape);
}
}
Expand Down

0 comments on commit 2e68fdc

Please sign in to comment.