Dieser Commit ist enthalten in:
Ursprung
68ef7999fd
Commit
58c74a72f4
@ -37,20 +37,20 @@ public class SWTextComponent {
|
||||
|
||||
public SWTextComponent() {
|
||||
this.textComponent = new TextComponent();
|
||||
this.root = this.textComponent;
|
||||
this.root = new TextComponent();
|
||||
}
|
||||
public SWTextComponent(String text) {
|
||||
this.textComponent = new TextComponent(TextComponent.fromLegacyText(text));
|
||||
this.root = this.textComponent;
|
||||
this.root = new TextComponent(TextComponent.fromLegacyText(text));
|
||||
this.textComponent = new TextComponent();
|
||||
}
|
||||
public SWTextComponent(String text, Message message) {
|
||||
this.textComponent = new TextComponent(TextComponent.fromLegacyText(text));
|
||||
this.root = this.textComponent;
|
||||
this.root = new TextComponent(TextComponent.fromLegacyText(text));
|
||||
this.textComponent = new TextComponent();
|
||||
this.message = message;
|
||||
}
|
||||
public SWTextComponent(Message message) {
|
||||
this.textComponent = new TextComponent();
|
||||
this.root = this.textComponent;
|
||||
this.root = new TextComponent();
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren