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

Commit

Permalink
BZ-1274685 - New Repository dialog validation broken when Managed Rep…
Browse files Browse the repository at this point in the history
…ository is checked
  • Loading branch information
wmedvede authored and csadilek committed Nov 3, 2015
1 parent e7df6e1 commit 7a29bcd
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -34,8 +34,8 @@ public abstract class AbstractWizard implements

@Inject
//The generic view
private WizardView view;
private boolean isStarted = false;
protected WizardView view;
protected boolean isStarted = false;

@PostConstruct
public void setup() {
Expand All @@ -57,7 +57,7 @@ public void onStatusChange( final @Observes WizardPageStatusChangeEvent event )
checkPagesState();
}

private void checkPagesState() {
protected void checkPagesState() {
final List<WizardPage> wps = getPages();
for ( WizardPage wp : wps ) {
final int index = wps.indexOf( wp );
Expand Down

0 comments on commit 7a29bcd

Please sign in to comment.