Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Code style: Fix linter errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jodator committed Feb 8, 2019
1 parent e7d09cd commit 75397b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/conversion/conversion.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export default class Conversion {

this._upcast = Array.isArray( upcastDispatchers ) ? upcastDispatchers : [ upcastDispatchers ];
this._createConversionHelpers( { name: 'upcast', dispatchers: this._upcast, isDowncast: false } );

}

/**
Expand Down Expand Up @@ -110,7 +109,7 @@ export default class Conversion {
'Trying to register and alias for a dispatcher that nas not been registered.' );
}

this._createConversionHelpers( { name: alias, dispatchers: [ dispatcher ], isDowncast: isDowncast } );
this._createConversionHelpers( { name: alias, dispatchers: [ dispatcher ], isDowncast } );
}

/**
Expand Down

0 comments on commit 75397b2

Please sign in to comment.