Skip to content
Snippets Groups Projects
Commit e3c69718 authored by Nicholas Pacini's avatar Nicholas Pacini
Browse files

small fix for show/hide ChRtSpecification command

parent f98a9db2
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,10 @@ public class ShowRTInformationCommand extends AbstractHandler{
if (temp instanceof BasicCompartmentImpl){
Iterator iter2 = ((BasicCompartmentImpl) temp).getPersistedChildren().iterator();
while (iter2.hasNext()){
showHideRT((Shape)iter2.next(), visibility);
Object obj = iter2.next();
if(obj instanceof Shape){
showHideRT((Shape)obj, visibility);
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment