Browse Source

Code style: Fix linter errors.

Maciej Gołaszewski 6 years ago
parent
commit
85739ee67e
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/ckeditor5-engine/src/conversion/conversion.js

+ 1 - 2
packages/ckeditor5-engine/src/conversion/conversion.js

@@ -79,7 +79,6 @@ export default class Conversion {
 
 
 		this._upcast = Array.isArray( upcastDispatchers ) ? upcastDispatchers : [ upcastDispatchers ];
 		this._upcast = Array.isArray( upcastDispatchers ) ? upcastDispatchers : [ upcastDispatchers ];
 		this._createConversionHelpers( { name: 'upcast', dispatchers: this._upcast, isDowncast: false } );
 		this._createConversionHelpers( { name: 'upcast', dispatchers: this._upcast, isDowncast: false } );
-
 	}
 	}
 
 
 	/**
 	/**
@@ -110,7 +109,7 @@ export default class Conversion {
 				'Trying to register and alias for a dispatcher that nas not been registered.' );
 				'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 } );
 	}
 	}
 
 
 	/**
 	/**