Skip to content

Commit b6bd83b

Browse files
committed
fix(api): Fix since tag for custom click events
1 parent e8d9d1d commit b6bd83b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/src/main/java/net/kyori/adventure/text/event/ClickEvent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ static ClickEvent<Payload.Dialog> showDialog(final DialogLike dialog) {
185185
*
186186
* @param key the key identifying the payload
187187
* @return the click event
188-
* @since 4.23.0
188+
* @since 5.0.0
189189
*/
190190
static ClickEvent<Payload.Custom> custom(final Key key) {
191191
return ClickEvent.custom(key, null);
@@ -480,7 +480,7 @@ static ClickEvent.Payload.Dialog dialog(final DialogLike dialog) {
480480
*
481481
* @param key the key identifying the payload
482482
* @return the payload
483-
* @since 4.23.0
483+
* @since 5.0.0
484484
*/
485485
static ClickEvent.Payload.Custom custom(final Key key) {
486486
return ClickEvent.Payload.custom(key, null);

0 commit comments

Comments
 (0)