Browse Source

MoveOperation remove not needed dependency.

Szymon Cofalik 10 years ago
parent
commit
5ee9b42d1c
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/ckeditor5-utils/src/document/operation/moveoperation.js

+ 1 - 2
packages/ckeditor5-utils/src/document/operation/moveoperation.js

@@ -7,11 +7,10 @@
 
 CKEDITOR.define( [
 	'document/operation/operation',
-	'document/nodelist',
 	'document/range',
 	'ckeditorerror',
 	'utils'
-], ( Operation, NodeList, Range, CKEditorError, utils ) => {
+], ( Operation, Range, CKEditorError, utils ) => {
 	/**
 	 * Operation to move list of subsequent nodes from one position in the document to another.
 	 *