Skip to content

Commit

Permalink
Changes related to the FXFuture API latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Dec 22, 2023
1 parent 24da501 commit 8a9a92c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public SignedInPage(LoginApp app,
.onSuccess(nothing -> {
app.setUser(null);
app.getSessionManager().gotoURL("/");
return nothing;
}));
signOutButton.setDefaultButton(true);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public static <T> FXFuture<T> showLoadingScreen(Pane popupContext, FXFuture<T> f
fu.onComplete((v) -> {
indicator.setProgress(1.0);
closePopup(popup);
return null;
});
return fu;
}
Expand Down

0 comments on commit 8a9a92c

Please sign in to comment.