Skip to content

Commit

Permalink
Commenting out debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
TimLethbridge committed May 6, 2022
1 parent de101d9 commit 8e01bfe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cruise.umple/src/generators/Generator_CodeStateTables.ump
Expand Up @@ -109,12 +109,14 @@ class CompositeStateWrapper
String fromState = t.getFromState().getName();
String nextState = t.getNextState().getName();
String eventName = t.getEvent().getName();
/* DEBUG
System.out.println("===========================");
System.out.println(getCompositeName());
System.out.println(nextCsw.getCompositeName());
System.out.println(fromState);
System.out.println(eventName);
System.out.println(nextState);
*/
//First check, does the fromCsw contain the fromState
//and does the nextCsw contain the nextState?
if(!containsState(fromState))
Expand Down Expand Up @@ -279,8 +281,10 @@ class CompositeStateWrapper
String fromState = t.getFromState().getName();
String nextState = t.getNextState().getName();
String eventName = t.getEvent().getName();
/* DEBUG
System.out.println(getCompositeName());
System.out.println(nextCsw.getCompositeName());
*/

boolean fromCswContainsFromStateAtCurrentNestingLevel; //does the fromCsw contain the fromState at this nesting level?
boolean nextCswContainsNextStateAtCurrentNestingLevel; //does the nextCsw contain the nextState at this nesting level?
Expand Down

0 comments on commit 8e01bfe

Please sign in to comment.