We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 876f314 commit 7426c60Copy full SHA for 7426c60
src/main/java/me/flame/menus/items/MenuItem.java
@@ -1,6 +1,5 @@
1
package me.flame.menus.items;
2
3
-import jdk.internal.vm.annotation.ForceInline;
4
import lombok.Getter;
5
import lombok.Setter;
6
import me.flame.menus.components.nbt.ItemNbt;
@@ -159,7 +158,6 @@ public boolean equals(Object o) {
159
158
}
160
161
162
- @ForceInline
163
public CompletableFuture<ActionResponse> click(final int slot, final ClickActionEvent event) {
164
return async
165
? clickAction.thenApplyAsync(ca -> ca.apply(slot, event)) // this is what's executing async btw
0 commit comments