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
if (sigmet.getForecastGeometries().get().get(forecastIndex.get()).getNoVaExpected().isPresent()&&
sigmet.getForecastGeometries().get().get(forecastIndex.get()).getNoVaExpected().get()) {
Can be replaced with:
if (sigmet.getForecastGeometries().get().get(forecastIndex.get()).getNoVaExpected().orElse(false)) {
Note that the getter names have changed.
The text was updated successfully, but these errors were encountered:
Can be replaced with:
Note that the getter names have changed.
The text was updated successfully, but these errors were encountered: