瀏覽代碼

Remove reference to removed ForceDisabledMixin

panr 5 年之前
父節點
當前提交
0b336749a8
共有 1 個文件被更改,包括 0 次插入4 次删除
  1. 0 4
      packages/ckeditor5-typing/src/texttransformation.js

+ 0 - 4
packages/ckeditor5-typing/src/texttransformation.js

@@ -10,8 +10,6 @@
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 import TextWatcher from './textwatcher';
 import { escapeRegExp } from 'lodash-es';
-import ForceDisabledMixin from '@ckeditor/ckeditor5-utils/src/forcedisabledmixin';
-import mix from '@ckeditor/ckeditor5-utils/src/mix';
 
 // All named transformations.
 const TRANSFORMATIONS = {
@@ -198,8 +196,6 @@ export default class TextTransformation extends Plugin {
 	}
 }
 
-mix( TextTransformation, ForceDisabledMixin );
-
 // Normalizes the configuration `from` parameter value.
 // The normalized value for the `from` parameter is a RegExp instance. If the passed `from` is already a RegExp instance,
 // it is returned unchanged.