mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-29 05:55:48 +01:00
Rename ContentDisplay#send to #show.
This commit is contained in:
parent
3010cc958e
commit
ee95aa8462
@ -5,7 +5,6 @@ import org.bukkit.command.CommandSender;
|
|||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.WeakHashMap;
|
import java.util.WeakHashMap;
|
||||||
@ -68,7 +67,7 @@ public class ContentDisplay<T> {
|
|||||||
*
|
*
|
||||||
* @param sender The CommandSender to show the display to.
|
* @param sender The CommandSender to show the display to.
|
||||||
*/
|
*/
|
||||||
public void send(@NotNull CommandSender sender) {
|
public void show(@NotNull CommandSender sender) {
|
||||||
Collection<String> formattedContent;
|
Collection<String> formattedContent;
|
||||||
try {
|
try {
|
||||||
formattedContent = (this.contents == null) ? null : this.displayHandler.format(sender, this);
|
formattedContent = (this.contents == null) ? null : this.displayHandler.format(sender, this);
|
||||||
@ -262,7 +261,7 @@ public class ContentDisplay<T> {
|
|||||||
* @param sender The CommandSender to show the display to.
|
* @param sender The CommandSender to show the display to.
|
||||||
*/
|
*/
|
||||||
public void show(CommandSender sender) {
|
public void show(CommandSender sender) {
|
||||||
this.build().send(sender);
|
this.build().show(sender);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user