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

AVATAR Design: bug resolved on transitions

parent 67ddbabd
No related branches found
No related tags found
No related merge requests found
......@@ -285,17 +285,21 @@ public class AvatarSMDTransitionInfo extends TGCWithoutInternalComponent {
sb.append("\" />\n");
}
for(int i=0; i<filesToInclude.length; i++) {
sb.append("<filesToIncludeLine value=\"");
sb.append(GTURTLEModeling.transformString(filesToInclude[i]));
sb.append("\" />\n");
}
if (filesToInclude != null) {
for(int i=0; i<filesToInclude.length; i++) {
sb.append("<filesToIncludeLine value=\"");
sb.append(GTURTLEModeling.transformString(filesToInclude[i]));
sb.append("\" />\n");
}
}
for(int i=0; i<codeToInclude.length; i++) {
sb.append("<codeToIncludeLine value=\"");
sb.append(GTURTLEModeling.transformString(codeToInclude[i]));
sb.append("\" />\n");
}
if (codeToInclude != null) {
for(int i=0; i<codeToInclude.length; i++) {
sb.append("<codeToIncludeLine value=\"");
sb.append(GTURTLEModeling.transformString(codeToInclude[i]));
sb.append("\" />\n");
}
}
sb.append("</extraparam>\n");
return new String(sb);
......
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