-
-
diff --git a/src/addons/mod/forum/components/edit-post/edit-post.ts b/src/addons/mod/forum/components/edit-post/edit-post.ts
deleted file mode 100644
index e3a81636c..000000000
--- a/src/addons/mod/forum/components/edit-post/edit-post.ts
+++ /dev/null
@@ -1,150 +0,0 @@
-// (C) Copyright 2015 Moodle Pty Ltd.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-import { Component, ViewChild, ElementRef, Input, OnInit } from '@angular/core';
-import { FormControl } from '@angular/forms';
-import { CoreFileUploader } from '@features/fileuploader/services/fileuploader';
-import { CoreSites } from '@services/sites';
-import { CoreDomUtils } from '@services/utils/dom';
-import { ModalController, Translate } from '@singletons';
-import { AddonModForumData, AddonModForumPost, AddonModForumReply } from '@addons/mod/forum/services/forum';
-import { AddonModForumHelper } from '@addons/mod/forum/services/forum-helper';
-import { CoreForms } from '@singletons/form';
-import { CoreFileEntry } from '@services/file-helper';
-
-/**
- * Page that displays a form to edit discussion post.
- */
-@Component({
- selector: 'addon-mod-forum-edit-post',
- templateUrl: 'edit-post.html',
-})
-export class AddonModForumEditPostComponent implements OnInit {
-
- @ViewChild('editFormEl') formElement!: ElementRef;
-
- @Input() component!: string; // Component this post belong to.
- @Input() componentId!: number; // Component ID.
- @Input() forum!: AddonModForumData; // The forum the post belongs to. Required for attachments and offline posts.
- @Input() post!: AddonModForumPost;
-
- messageControl = new FormControl();
- advanced = false; // Display all form fields.
- replyData!: AddonModForumReply;
- originalData!: Omit