Changeset 1739


Ignore:
Timestamp:
09/11/14 14:07:23 (10 years ago)
Author:
rkrimmel
Message:

More debugging output in task builder

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/TaskBuilder.java

    r1734 r1739  
    3333import de.ugoe.cs.autoquest.tasktrees.treeifc.IUserSession; 
    3434 
    35 // TODO: Auto-generated Javadoc 
    3635/** 
    3736 * <p> 
     
    252251                                                .equals(child.getTask())))) { 
    253252                        throw new IllegalArgumentException( 
    254                                         "the task of the child instance to be added does not belong to the children " 
    255                                                         + "of the task of the parent instance"); 
    256                 } 
    257  
     253                                        "the task of the child instance (" + child.getTask() + ") to be added does not belong to the children " 
     254                                                        + "of the task of the parent instance (" + parentTask.getChildren().get(seqInstance.size()) + ")"); 
     255                } 
    258256                seqInstance.addChild(child); 
    259257        } 
Note: See TracChangeset for help on using the changeset viewer.