Release 7.2.0

This commit is contained in:
Alexander Brandes 2023-11-03 15:01:50 +01:00
parent e3bfd9b8bf
commit fdc887850c
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
4 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@ public class ServerListener implements Listener {
/** /**
* Internal use only. Required to implement lazy econ loading using Guice. * Internal use only. Required to implement lazy econ loading using Guice.
* *
* @since TODO * @since 7.2.0
*/ */
public interface MutableEconHandler { public interface MutableEconHandler {
void setImplementation(EconHandler econHandler); void setImplementation(EconHandler econHandler);

View File

@ -58,7 +58,7 @@ public enum Direction {
/** /**
* {@return the opposite direction} * {@return the opposite direction}
* If this is {@link Direction#ALL}, then {@link Direction#ALL} is returned. * If this is {@link Direction#ALL}, then {@link Direction#ALL} is returned.
* @since TODO * @since 7.2.0
*/ */
public Direction opposite() { public Direction opposite() {
return switch (this) { return switch (this) {

View File

@ -942,7 +942,7 @@ public abstract class PlotArea implements ComponentLike {
* @return The border distance or Integer.MAX_VALUE if no border is set * @return The border distance or Integer.MAX_VALUE if no border is set
* @deprecated Use {@link PlotArea#getBorder(boolean)} * @deprecated Use {@link PlotArea#getBorder(boolean)}
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "7.2.0")
public int getBorder() { public int getBorder() {
final Integer meta = (Integer) getMeta("worldBorder"); final Integer meta = (Integer) getMeta("worldBorder");
if (meta != null) { if (meta != null) {
@ -962,7 +962,7 @@ public abstract class PlotArea implements ComponentLike {
* *
* @param getExtended If the extra border given by world.border-size should be included * @param getExtended If the extra border given by world.border-size should be included
* @return Border distance of Integer.MAX_VALUE if no border is set * @return Border distance of Integer.MAX_VALUE if no border is set
* @since TODO * @since 7.2.0
*/ */
public int getBorder(boolean getExtended) { public int getBorder(boolean getExtended) {
final Integer meta = (Integer) getMeta("worldBorder"); final Integer meta = (Integer) getMeta("worldBorder");
@ -1240,7 +1240,7 @@ public abstract class PlotArea implements ComponentLike {
* Get the "extra border" size of the plot area. * Get the "extra border" size of the plot area.
* *
* @return Plot area extra border size * @return Plot area extra border size
* @since TODO * @since 7.2.0
*/ */
public int getBorderSize() { public int getBorderSize() {
return borderSize; return borderSize;

View File

@ -22,7 +22,7 @@ plugins {
} }
group = "com.intellectualsites.plotsquared" group = "com.intellectualsites.plotsquared"
version = "7.1.1-SNAPSHOT" version = "7.2.0"
if (!File("$rootDir/.git").exists()) { if (!File("$rootDir/.git").exists()) {
logger.lifecycle(""" logger.lifecycle("""