Skip to content

Commit

Permalink
Release 7.3.2
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Brandes <mc.cache@web.de>
  • Loading branch information
NotMyFault committed Jan 22, 2024
1 parent 76ea9e0 commit 5021f5b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public interface CancellablePlotEvent {
/**
* @deprecated No usage and not null-safe
*/
@Deprecated(since = "TODO")
@Deprecated(since = "7.3.2")
default int getEventResultRaw() {
return getEventResult() != null ? getEventResult().getValue() : -1;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* <p>
* Setting the {@link #setPrice(double) price} to {@code 0} makes the plot practically free.
*
* @since TODO
* @since 7.3.2
*/
public class PlayerBuyPlotEvent extends PlotPlayerEvent implements CancellablePlotEvent {

Expand All @@ -49,7 +49,7 @@ public PlayerBuyPlotEvent(final PlotPlayer<?> plotPlayer, final Plot plot, @NonN
* Sets the price required to buy the plot.
*
* @param price the new price.
* @since TODO
* @since 7.3.2
*/
public void setPrice(@NonNegative final double price) {
//noinspection ConstantValue - the annotation does not ensure a non-negative runtime value
Expand All @@ -63,7 +63,7 @@ public void setPrice(@NonNegative final double price) {
* Returns the currently set price required to buy the plot.
*
* @return the price.
* @since TODO
* @since 7.3.2
*/
public @NonNegative double price() {
return price;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Called after a player has successfully bought a plot.
*
* @since TODO
* @since 7.3.2
*/
public class PostPlayerBuyPlotEvent extends PlotPlayerEvent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* Called after a {@link Plot} was cleared.
*
* @since TODO
* @since 7.3.2
*/
public class PostPlotClearEvent extends PlotPlayerEvent {

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

group = "com.intellectualsites.plotsquared"
version = "7.3.2-SNAPSHOT"
version = "7.3.2"

if (!File("$rootDir/.git").exists()) {
logger.lifecycle("""
Expand Down

0 comments on commit 5021f5b

Please sign in to comment.