1
0
mirror of https://github.com/flarum/core.git synced 2025-08-08 17:36:38 +02:00

Remove deprecated "BC Layers", since BC is broken anyway

This commit is contained in:
Alexander Skvortsov
2020-08-10 00:53:33 -04:00
committed by Franz Liedke
parent 537f5e833e
commit 21861f231b
3 changed files with 0 additions and 22 deletions

View File

@@ -90,11 +90,6 @@ export default class ForumApplication extends Application {
* @type {DiscussionListState}
*/
this.discussions = new DiscussionListState({}, this);
/**
* @deprecated beta 14, remove in beta 15.
*/
this.cache.discussionList = this.discussions;
}
/**

View File

@@ -44,12 +44,6 @@ export default class ComposerBody extends Component {
}
this.composer.fields.content(this.attrs.originalContent || '');
/**
* @deprecated BC layer, remove in Beta 15.
*/
this.content = this.composer.fields.content;
this.editor = this.composer;
}
view() {

View File

@@ -33,11 +33,6 @@ class ComposerState {
this.editor = null;
this.clear();
/**
* @deprecated BC layer, remove in Beta 15.
*/
this.component = this;
}
/**
@@ -76,12 +71,6 @@ class ComposerState {
this.fields = {
content: m.stream(''),
};
/**
* @deprecated BC layer, remove in Beta 15.
*/
this.content = this.fields.content;
this.value = this.fields.content;
}
/**