소스 검색

Added empty "Plugin.destroy()" method because some of tests do not pass.

Kamil Piechaczek 8 년 전
부모
커밋
ae158759b9
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      packages/ckeditor5-core/src/plugin.js

+ 6 - 0
packages/ckeditor5-core/src/plugin.js

@@ -29,6 +29,12 @@ export default class Plugin {
 		 */
 		this.editor = editor;
 	}
+
+	/**
+	 * @inheritDoc
+	 */
+	destroy() {
+	}
 }
 
 mix( Plugin, ObservableMixin );