Skip to content

Commit

Permalink
info
Browse files Browse the repository at this point in the history
  • Loading branch information
Angeschossen committed Mar 28, 2024
1 parent 8ff0f24 commit 1d80a13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ java {
}

group = "com.github.angeschossen"
version = "1.0.17"
version = "1.0.18"
description = "PluginFrameworkAPI"
java.sourceCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import org.bukkit.Bukkit;
import org.bukkit.event.Event;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.Collection;
import java.util.UUID;
Expand All @@ -18,8 +19,8 @@ public PluginEvent() {

public abstract void setExpressionVariables(ImmutableMap.@NotNull Builder<String, Object> builder);

@NotNull
@Nullable
public String getDebugInfo() {
return toString();
return null;
}
}

0 comments on commit 1d80a13

Please sign in to comment.