Skip to content

Commit

Permalink
fix for #130
Browse files Browse the repository at this point in the history
  • Loading branch information
dsukhoroslov committed Dec 15, 2017
1 parent fe66e54 commit 971a572
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,7 @@ public void setClientId(String clientId) {

@Override
public String getUserName() {
String user = ((ClientManagementImpl) clientMgr).getClientUser(getClientId());
//if (user == null) {
// user = "unknown";
//}
return user;
return ((ClientManagementImpl) clientMgr).getClientUser(getClientId());
}

@Override
Expand Down

0 comments on commit 971a572

Please sign in to comment.