Fix copy-paste mistake in MWTransclusionContentModel

I'm not 100% sure, but this looks like a copy-paste mistake to
me. Something like this (a subclass modifying the base class)
is not done anywhere else.

Change-Id: I24677c2deb721b68d1b534f1569c925b386d4d3d
This commit is contained in:
Thiemo Kreuz 2020-09-09 10:31:27 +02:00
parent a98946ca81
commit 99b0a1e6c0

View file

@ -64,6 +64,6 @@ ve.dm.MWTransclusionContentModel.prototype.serialize = function () {
/**
* @inheritdoc
*/
ve.dm.MWTransclusionPartModel.prototype.getWikitext = function () {
ve.dm.MWTransclusionContentModel.prototype.getWikitext = function () {
return this.value;
};