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

Resolving bug on using timers in guard

parent 2d983910
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,9 @@ public class AvatarSyntaxChecker {
String act = tmp;
for(AvatarAttribute aa: _ab.getAttributes()) {
act = Conversion.putVariableValueInString(AvatarSpecification.ops, act, aa.getName(), aa.getDefaultInitialValue());
if (aa.getType() != AvatarType.TIMER) {
act = Conversion.putVariableValueInString(AvatarSpecification.ops, act, aa.getName(), aa.getDefaultInitialValue());
}
}
//TraceManager.addDev("Testing guard expr=" + act);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment