diff --git a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/client/ChangeStatus.java b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/client/ChangeStatus.java index 56ebf9da12..661d2538c5 100644 --- a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/client/ChangeStatus.java +++ b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/client/ChangeStatus.java @@ -42,12 +42,12 @@ public enum ChangeStatus { * the uploader publishes the change, it becomes a NEW change. * Publishing is a one-way action, a change cannot return to DRAFT status. * Draft changes are only visible to the uploader and those explicitly - * added as reviewers. + * added as reviewers. Note that currently draft changes cannot be abandoned. * *

* Changes in the DRAFT state can be moved to: *

*/ DRAFT, @@ -69,6 +69,12 @@ public enum ChangeStatus { * Once a change has been abandoned, it cannot be further modified by adding * a replacement patch set, and it cannot be merged. Draft comments however * may be published, permitting reviewers to send constructive feedback. + * + *

+ * Changes in the ABANDONED state can be moved to: + *

*/ ABANDONED -} \ No newline at end of file +}