Skip to content

Commit

Permalink
FORGE-2495: Fixed WizardCommandController
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Oct 1, 2015
1 parent 72e553d commit ade08f8
Showing 1 changed file with 12 additions and 11 deletions.
Expand Up @@ -125,6 +125,7 @@ public Result execute() throws Exception
{
assertInitialized();
assertValid();
refreshFlow();
UIProgressMonitor progressMonitor = runtime.createProgressMonitor(context);
UIPrompt prompt = runtime.createPrompt(context);
UIExecutionContextImpl executionContext = new UIExecutionContextImpl(context, progressMonitor, prompt);
Expand Down Expand Up @@ -239,19 +240,19 @@ public Object getValueFor(String inputName) throws IllegalArgumentException
return getCurrentController().getInputs();
}

@Override
public InputComponent<?, ?> getInput(String inputName)
{
return getInputs().get(inputName);
}
@Override
public InputComponent<?, ?> getInput(String inputName)
{
return getInputs().get(inputName);
}

@Override
public boolean hasInput(String inputName)
{
return getInputs().containsKey(inputName);
}
@Override
public boolean hasInput(String inputName)
{
return getInputs().containsKey(inputName);
}

@Override
@Override
public UICommandMetadata getMetadata()
{
return getCurrentController().getMetadata();
Expand Down

0 comments on commit ade08f8

Please sign in to comment.