Changeset 1739 for branches/autoquest-core-tasktrees-alignment
- Timestamp:
- 09/11/14 14:07:23 (10 years ago)
- 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 33 33 import de.ugoe.cs.autoquest.tasktrees.treeifc.IUserSession; 34 34 35 // TODO: Auto-generated Javadoc36 35 /** 37 36 * <p> … … 252 251 .equals(child.getTask())))) { 253 252 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 } 258 256 seqInstance.addChild(child); 259 257 }
Note: See TracChangeset
for help on using the changeset viewer.