From 8c94b7390055d65635521ca69be9b2075fc56a17 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 26 Aug 2015 13:54:36 +0200 Subject: [PATCH] =?utf8?q?The=20name=20'wrapper'=20was=20not=20proper,=20b?= =?utf8?q?etter=20use=20'frontend'.=20Signed-off-by:Roland=20H=C3=A4der=20?= =?utf8?q??= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcore/BaseFrameworkSystem.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index dd7231b..1723cc8 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -103,7 +103,7 @@ public class BaseFrameworkSystem implements FrameworkInterface { /** * DatabaseFrontend instance */ - private DatabaseFrontend wrapper; + private DatabaseFrontend frontend; /** * Initialize object @@ -881,16 +881,16 @@ public class BaseFrameworkSystem implements FrameworkInterface { * @return DatabaseFrontend instance */ protected final DatabaseFrontend getFrontend () { - return this.wrapper; + return this.frontend; } /** * Setter for wrapper instance * - * @param wrapper A DatabaseFrontend instance + * @param frontend A DatabaseFrontend instance */ - protected final void setFrontend (final DatabaseFrontend wrapper) { - this.wrapper = wrapper; + protected final void setFrontend (final DatabaseFrontend frontend) { + this.frontend = frontend; } /** -- 2.39.5