Skip to content

Commit

Permalink
refactor(TransitionService): Remove redundant default param values
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Feb 23, 2017
1 parent 4717b94 commit 05013a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transition/transitionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export class TransitionService implements IHookRegistry, Disposable {

this._defineEvent("onCreate", Phase.CREATE, 0, paths.to, false, TH.IGNORE_RESULT, TH.THROW_ERROR, false);

this._defineEvent("onBefore", Phase.BEFORE, 0, paths.to, false, TH.HANDLE_RESULT);
this._defineEvent("onBefore", Phase.BEFORE, 0, paths.to);

this._defineEvent("onStart", Phase.RUN, 0, paths.to);
this._defineEvent("onExit", Phase.RUN, 100, paths.exiting, true);
Expand Down

0 comments on commit 05013a6

Please sign in to comment.