This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 63ea76821826148b0962cc109477e7bc529322ed Author: juanpablo <[email protected]> AuthorDate: Sun May 3 22:03:31 2020 +0200 fix javadocs for new workflow events. --- jspwiki-event/src/main/java/org/apache/wiki/event/WorkflowEvent.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jspwiki-event/src/main/java/org/apache/wiki/event/WorkflowEvent.java b/jspwiki-event/src/main/java/org/apache/wiki/event/WorkflowEvent.java index 76caffa..10f0d48 100644 --- a/jspwiki-event/src/main/java/org/apache/wiki/event/WorkflowEvent.java +++ b/jspwiki-event/src/main/java/org/apache/wiki/event/WorkflowEvent.java @@ -63,10 +63,10 @@ public final class WorkflowEvent extends WikiEvent { /** When the workflow wishes to remove a Decision from the DecisionQueue */ public static final int DQ_REMOVAL = 70; - /** When the workflow wishes to remove a Decision from the DecisionQueue */ + /** When the decision queue decides the outcome of a Decision */ public static final int DQ_DECIDE = 80; - /** When the workflow wishes to remove a Decision from the DecisionQueue */ + /** When the decision queue reassigns a Decision */ public static final int DQ_REASSIGN = 90; /**
