Skip to content
Snippets Groups Projects
Commit 29d7f807 authored by Florian Lugou's avatar Florian Lugou
Browse files

fixed bug with simulation window (index out of range)

parent a75d5044
No related branches found
No related tags found
No related merge requests found
......@@ -50,14 +50,12 @@ package ui.interactivesimulation;
*/
public class GenericTransaction {
public final static int NOT_DEFINED = 0;
public final static int FUNCTION_CALL = 1;
public final static int STATE_ENTERING = 2;
public final static int VAR_MODIFICATION = 3;
public final static int SEND_SYNCHRO = 4;
public final static int SYNCHRO = 5;
public final static int SEND_ASYNCHRO = 6;
public final static int RECEIVE_ASYNCHRO = 7;
final static int FUNCTION_CALL = 1;
final static int STATE_ENTERING = 2;
final static int SEND_SYNCHRO = 4;
final static int SYNCHRO = 5;
final static int SEND_ASYNCHRO = 6;
final static int RECEIVE_ASYNCHRO = 7;
public int ID;
public int type;
......
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