Browse Source

Changed: Removed `RemoveOperation#fromJson` that did nothing more than `MoveOperation#fromJson`.

Szymon Cofalik 8 years ago
parent
commit
36e044af3b
1 changed files with 0 additions and 4 deletions
  1. 0 4
      packages/ckeditor5-engine/src/model/operation/removeoperation.js

+ 0 - 4
packages/ckeditor5-engine/src/model/operation/removeoperation.js

@@ -38,8 +38,4 @@ export default class RemoveOperation extends MoveOperation {
 	static get className() {
 		return 'engine.model.operation.RemoveOperation';
 	}
-
-	static fromJSON( json, document ) {
-		return super.fromJSON( json, document );
-	}
 }