You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static final Set<Spiller.Phase> PHASE_SET_SHRINK_ONLY =
Collections.singleton(Spiller.Phase.SHRINK);
public static final Set<Spiller.Phase> PHASE_SET_SPILL_ONLY =
Collections.singleton(Spiller.Phase.SPILL);
After my investigation, we can avoid using Set here, Enum is better way.