From: Roland Häder Date: Thu, 19 May 2016 15:39:03 +0000 (+0200) Subject: no redirect target needed here and makes no sense, too X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e88de49854f64d658ee4ff1da43d76b9e0ad31e8;p=pizzaservice-ejb.git no redirect target needed here and makes no sense, too --- diff --git a/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkSessionBean.java b/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkSessionBean.java index 015d882..cfb91e5 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkSessionBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkSessionBean.java @@ -42,7 +42,7 @@ public class PizzaResendLinkSessionBean extends BasePizzaDatabaseBean implements private static final long serialVersionUID = 71_546_726_857_195_360L; @Override - public String resendConfirmationLink (final User user, final Locale locale, final String baseUrl) { + public void resendConfirmationLink (final User user, final Locale locale, final String baseUrl) { // Log trace message this.getLoggerBeanLocal().logTrace(MessageFormat.format("resendConfirmationLink: user={0},locale={1},baseUrl={2} - CALLED!", user, locale, baseUrl)); //NOI18N @@ -86,9 +86,6 @@ public class PizzaResendLinkSessionBean extends BasePizzaDatabaseBean implements // Log trace message this.getLoggerBeanLocal().logTrace("resendConfirmationLink: CALLED!"); //NOI18N - - // All fine - return "resend_done"; //NOI18N } }