CCM NG: Fixed typo in TaskManager (parameters of checkForCirularDependency were swapped)
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@5298 8810af33-2d31-482b-a856-94f89814c4df
Former-commit-id: 895fdc1f19
pull/2/head
parent
55780a118b
commit
59be6c3389
|
|
@ -123,7 +123,7 @@ public class TaskManager implements Serializable {
|
|||
Objects.toString(blockedTask));
|
||||
|
||||
LOGGER.debug("Checking for circular dependencies...");
|
||||
checkForCircularDependencies(blockingTask, blockedTask);
|
||||
checkForCircularDependencies(blockedTask, blockingTask);
|
||||
|
||||
LOGGER.debug("Checking if dependency already exists...");
|
||||
final TypedQuery<Boolean> query = entityManager
|
||||
|
|
|
|||
Loading…
Reference in New Issue