Skip to content

Commit

Permalink
doCreate* methods are now protected
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Dec 20, 2017
1 parent 03e1ade commit 2e3d163
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@ private UICommand transform(final UIContext context, final UICommand originalCom
return command;
}

WizardCommandController doCreateWizardController(final UIContext context, final UIRuntime runtime,
protected WizardCommandController doCreateWizardController(final UIContext context, final UIRuntime runtime,
final UIWizard wizard)
{
WizardCommandControllerImpl controller = new WizardCommandControllerImpl(context, addonRegistry, runtime,
wizard, this);
return new NoUIWizardControllerDecorator(controller);
}

SingleCommandController doCreateSingleController(final UIContext context, final UIRuntime runtime,
protected SingleCommandController doCreateSingleController(final UIContext context, final UIRuntime runtime,
final UICommand command)
{
return new SingleCommandControllerImpl(addonRegistry, runtime, command, context);
Expand Down

0 comments on commit 2e3d163

Please sign in to comment.