Skip to content

Commit

Permalink
changed enum order-WARNING at end as DB has enum code stored for coll…
Browse files Browse the repository at this point in the history
…ection Status and TRASHED collection was being mapped to WARNING based on DB code
  • Loading branch information
meghnas committed Jun 30, 2015
1 parent 27e5d50 commit f6cb6ea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public enum CollectionStatus {
NOT_FOUND("NOT_FOUND"),
RUNNING_WARNING("RUNNING_WARNING"),
NOT_RUNNING("NOT_RUNNING"),
WARNING("WARNING"),
TRASHED("TRASHED");
TRASHED("TRASHED"),
WARNING("WARNING");

private CollectionStatus(String status) {
this.status = status;
Expand Down

0 comments on commit f6cb6ea

Please sign in to comment.