The standard Java naming convention calls for all capital enum constant.

This commit is contained in:
Kohsuke Kawaguchi
2011-06-24 17:42:36 -07:00
parent 898a190312
commit f8d4ec267b

View File

@@ -25,6 +25,6 @@
package org.kohsuke.github;
public enum GHIssueState {
Open,
Closed
OPEN,
CLOSED
}