Skip to content

Commit

Permalink
Make member ImmutableList to fix ImmutableEnumChecker warning in Stat…
Browse files Browse the repository at this point in the history
…icOrder

RELNOTES: Make member ImmutableList to fix ImmutableEnumChecker warning in StaticOrder

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=214343016
  • Loading branch information
sumitbhagwani authored and cushon committed Sep 28, 2018
1 parent 9b25f90 commit b88abdf
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -31,9 +31,9 @@ enum StaticOrder {
*/
STATIC_LAST(ImmutableList.of(Boolean.FALSE, Boolean.TRUE));

private final Iterable<Boolean> groupOrder;
private final ImmutableList<Boolean> groupOrder;

StaticOrder(Iterable<Boolean> groupOrder) {
StaticOrder(ImmutableList<Boolean> groupOrder) {
this.groupOrder = groupOrder;
}

Expand Down

0 comments on commit b88abdf

Please sign in to comment.