]> git.mxchange.org Git - addressbook-mailer-ejb.git/commitdiff
no redirect target needed here and makes no sense, too
authorRoland Häder <roland@mxchange.org>
Thu, 19 May 2016 15:39:03 +0000 (17:39 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 21 May 2016 11:57:05 +0000 (13:57 +0200)
src/java/org/mxchange/addressbook/beans/resendlink/AddressbookResendLinkSessionBean.java

index 8b2f384935a606fe9813d51503dfa552ca320083..3c5e743c24cea79af777f77d40b2f8ac715abf97 100644 (file)
@@ -41,7 +41,7 @@ public class AddressbookResendLinkSessionBean extends BaseAddressbookDatabaseBea
        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
 
@@ -85,9 +85,6 @@ public class AddressbookResendLinkSessionBean extends BaseAddressbookDatabaseBea
 
                // Log trace message
                this.getLoggerBeanLocal().logTrace("resendConfirmationLink: CALLED!"); //NOI18N
-
-               // All fine
-               return "resend_done"; //NOI18N
        }
 
 }