From: Roland Häder <roland@mxchange.org>
Date: Thu, 6 Jul 2017 19:30:17 +0000 (+0200)
Subject: Please cherry-pick:
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6dd929aec7af0efa5907c0f3c33a3f6d76321b36;p=jfinancials-war.git

Please cherry-pick:
- always call super() (one more found)
- sorted members

Signed-off-by: Roland Häder <roland@mxchange.org>
---

diff --git a/src/java/org/mxchange/jfinancials/beans/BaseFinancialsController.java b/src/java/org/mxchange/jfinancials/beans/BaseFinancialsController.java
index 13d77f5a..bccd7888 100644
--- a/src/java/org/mxchange/jfinancials/beans/BaseFinancialsController.java
+++ b/src/java/org/mxchange/jfinancials/beans/BaseFinancialsController.java
@@ -36,6 +36,8 @@ public abstract class BaseFinancialsController extends BaseFacesBean {
 	 * Protected constructor
 	 */
 	protected BaseFinancialsController () {
+		// Call super constructor
+		super();
 	}
 
 	@Override
diff --git a/src/java/org/mxchange/jfinancials/beans/confirmlink/FinancialsConfirmationLinkWebRequestBean.java b/src/java/org/mxchange/jfinancials/beans/confirmlink/FinancialsConfirmationLinkWebRequestBean.java
index 28491ff6..3ac7cf53 100644
--- a/src/java/org/mxchange/jfinancials/beans/confirmlink/FinancialsConfirmationLinkWebRequestBean.java
+++ b/src/java/org/mxchange/jfinancials/beans/confirmlink/FinancialsConfirmationLinkWebRequestBean.java
@@ -93,6 +93,16 @@ public class FinancialsConfirmationLinkWebRequestBean extends BaseFinancialsCont
 		super();
 	}
 
+	@Override
+	public String getConfirmationKey () {
+		return this.confirmationKey;
+	}
+
+	@Override
+	public void setConfirmationKey (final String confirmationKey) {
+		this.confirmationKey = confirmationKey;
+	}
+
 	/**
 	 * Post-construction method
 	 */
@@ -111,16 +121,6 @@ public class FinancialsConfirmationLinkWebRequestBean extends BaseFinancialsCont
 		}
 	}
 
-	@Override
-	public String getConfirmationKey () {
-		return this.confirmationKey;
-	}
-
-	@Override
-	public void setConfirmationKey (final String confirmationKey) {
-		this.confirmationKey = confirmationKey;
-	}
-
 	@Override
 	public void maybeConfirmUserAccount () {
 		// Is the confirmation key set?