ErrorProne: fix base/MissingCasesInEnumSwitch

This commit is contained in:
mkpaz 2023-02-09 14:45:41 +04:00
parent 524d9ed9b6
commit ba9bfc654b
2 changed files with 2 additions and 0 deletions

@ -17,6 +17,7 @@ public class InlineDatePickerBehavior extends BehaviorBase<InlineDatePicker, Inl
super(control, skin);
}
@SuppressWarnings("MissingCasesInEnumSwitch")
public void onKeyPressed(KeyEvent e) {
getSkin().rememberFocusedDayCell();

@ -72,6 +72,7 @@ public class PopoverSkin implements Skin<Popover> {
private Point2D dragStartLocation;
private final Popover popover;
@SuppressWarnings("MissingCasesInEnumSwitch")
public PopoverSkin(final Popover popover) {
this.popover = popover;