]> git.mxchange.org Git - addressbook-war.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Thu, 19 May 2016 15:30:30 +0000 (17:30 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 21 May 2016 12:30:11 +0000 (14:30 +0200)
- call clear(), maybe better
- removed debug line

src/java/org/mxchange/addressbook/beans/resendlink/AddressbookResendLinkWebSessionBean.java

index 698d74a331167e9b1b569a46e104f3e53d06ff98..7de6945e398ef0e9ba99f2b1e144c59f0e4318e9 100644 (file)
@@ -104,12 +104,12 @@ public class AddressbookResendLinkWebSessionBean extends BaseAddressbookControll
                // Get base URL
                String baseUrl = FacesUtils.generateBaseUrl();
 
-               // Debug message
-               System.out.println(MessageFormat.format("doResendLink: DEBUG - locale={0},baseUrl={1}", locale, baseUrl));
-
                // Call EJB and return redirect target
                String redirectTarget = this.emailBean.resendConfirmationLink(user, locale, baseUrl);
 
+               // Clear this bean
+               this.clear();
+
                // Return redirect target
                return redirectTarget;
        }