Skip to content
Snippets Groups Projects
Commit 7e9e1ffb authored by Irina LEE's avatar Irina LEE
Browse files

fixed ; (syscams)

parent a91b84d8
No related branches found
No related tags found
1 merge request!72Syscams
......@@ -433,9 +433,9 @@ public class PrimitiveCode {
}
corpsPrimitiveDE = corpsPrimitiveDE + "\t\tsensitive << " + t.getName() + ".";
if (t.getSensitiveMethod().equals("positive")) {
corpsPrimitiveDE = corpsPrimitiveDE + "pos()" + CR;
corpsPrimitiveDE = corpsPrimitiveDE + "pos();" + CR;
} else if (t.getSensitiveMethod().equals("negative")) {
corpsPrimitiveDE = corpsPrimitiveDE + "neg()" + CR;
corpsPrimitiveDE = corpsPrimitiveDE + "neg();" + CR;
}
sensitive = true;
}
......
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