From: Roland Haeder <roland@mxchange.org>
Date: Sun, 6 Sep 2015 09:07:06 +0000 (+0200)
Subject: Renamed method as this is no business method.
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d3c0f433cd467e46bc8222dd0f887cb2b0f614d8;p=jcoreee.git

Renamed method as this is no business method.

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

diff --git a/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java b/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java
index 295adf3..4967764 100644
--- a/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java
+++ b/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java
@@ -63,13 +63,11 @@ public abstract class BaseFrameworkBean implements FrameworkBean {
 	}
 
 	/**
-	 * Super initialization method. Do not set @PostConstruct here. If you overwrite this method, please call it
-	 * before (!) your own initialization.
+	 * Super initialization method. If you overwrite this method, please call it before (!) your own initialization.
 	 *
 	 * @throws RuntimeException If something unexpected happens
 	 */
-	@Override
-	public void init () throws RuntimeException {
+	protected void localInit () throws RuntimeException {
 		// Empty for now
 	}
 }