Skip to content
Snippets Groups Projects
Commit d6d58ca8 authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Fixing bug on comment attached to SMD element

parent c5f0aba5
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,10 @@ public class FindNextEnabledAvatarSMDConnectingPointVisitor extends FindNextEnab
@Override
protected boolean pruneConnector( final TGConnector connector ) {
if (!(connector instanceof AvatarSMDConnector)) {
return true;
}
final AvatarSMDConnector smdCon = (AvatarSMDConnector) connector;
final AvatarSMDState containingState = smdCon.getContainingState();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment