Skip to content
This repository has been archived by the owner on Apr 15, 2021. It is now read-only.

Commit

Permalink
Fixes #795
Browse files Browse the repository at this point in the history
  • Loading branch information
badziakp committed Jul 18, 2017
1 parent 5bd1301 commit a609730
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class AppConfigurationCtrl extends BaseCtrl {
private AppConfigurationModel model;

@PostConstruct
public String getInitialize() {
public void getInitialize() {

AppConfigurationModel model = getModel();
try {
Expand All @@ -63,7 +63,6 @@ public String getInitialize() {
} catch (Exception e) {
addError(e);
}
return "";
}

public String getLoggedInUserId() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class ManageServiceInstanceCtrl extends BaseCtrl {
protected ManageServiceInstanceModel model;

@PostConstruct
public String getInitialize() {
public void getInitialize() {
ManageServiceInstanceModel model = getModel();
try {
if (model == null) {
Expand All @@ -69,7 +69,6 @@ public String getInitialize() {
} catch (ServiceInstanceException | IllegalArgumentException e) {
addError(e);
}
return "";
}

public String executeService() {
Expand Down

0 comments on commit a609730

Please sign in to comment.