Clean up Actions.CORE

Sort the actions in alphabetical order and remove the unused "message"
action.

Change-Id: I551f5520ff8adb871c05dabe207d654384238782
This commit is contained in:
Gustaf Lundh 2015-05-08 11:48:24 +02:00 committed by David Pursehouse
parent e28ad680d8
commit e33f81ed14

View File

@ -36,9 +36,8 @@ import java.util.TreeSet;
class Actions extends Composite {
private static final String[] CORE = {
"abandon", "restore", "revert", "topic",
"cherrypick", "submit", "rebase", "message",
"publish", "followup", "hashtags", "/"};
"abandon", "cherrypick", "followup", "hashtags", "publish",
"rebase", "restore", "revert", "submit", "topic", "/"};
interface Binder extends UiBinder<FlowPanel, Actions> {}
private static final Binder uiBinder = GWT.create(Binder.class);