Remove unnecessary ctor

This commit is contained in:
RMidhunSuresh 2021-12-21 16:34:41 +05:30
parent f645065db7
commit e352867f5a

View file

@ -19,11 +19,6 @@ import {parsePlainBody} from "../MessageBody.js";
import {parseHTMLBody} from "../deserialize.js";
export class TextTile extends BaseTextTile {
constructor(options) {
super(options);
}
_getContentString(key) {
return this._getContent()?.[key] || "";
}