From 3987102e855a4291de15b12853337bcca48d61b7 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 19 Feb 2016 15:50:52 +0100 Subject: [PATCH] Use this where possible to make it more clear (and better style) --- .../addressbook/beans/profile/UserProfileWebRequestBean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/mxchange/addressbook/beans/profile/UserProfileWebRequestBean.java b/src/java/org/mxchange/addressbook/beans/profile/UserProfileWebRequestBean.java index 8473c49b..828023c2 100644 --- a/src/java/org/mxchange/addressbook/beans/profile/UserProfileWebRequestBean.java +++ b/src/java/org/mxchange/addressbook/beans/profile/UserProfileWebRequestBean.java @@ -60,7 +60,7 @@ public class UserProfileWebRequestBean implements UserProfileWebRequestControlle try { // Try to get it - u = userController.lookupUserById(userId); + u = this.userController.lookupUserById(userId); } catch (final UserNotFoundException ex) { // Throw again throw new FaceletException(ex); -- 2.39.5