* minor: typo

This commit is contained in:
Heng Sin Low 2008-10-04 05:12:46 +00:00
parent 453696f06c
commit 65bd6542bb
1 changed files with 2 additions and 2 deletions

View File

@ -238,8 +238,8 @@ public class WFPanel extends Panel implements EventListener
SessionManager.getAppDesktop().openProcessDialog(wfn.getAD_Process_ID(), false);
} else if (wfn.getAD_Task_ID() > 0) {
SessionManager.getAppDesktop().openTask(wfn.getAD_Task_ID());
} else if (wfn.getAD_Workflow_ID() > 0) {
SessionManager.getAppDesktop().openWorkflow(wfn.getAD_Workflow_ID());
} else if (wfn.getWorkflow_ID() > 0) {
SessionManager.getAppDesktop().openWorkflow(wfn.getWorkflow_ID());
} else {
throw new ApplicationException("Action not yet implemented: " + wfn.getAction());
}