From 87d993b205b9a7373c17bdd2c06d33f7f4114c13 Mon Sep 17 00:00:00 2001 From: Wouter Gritter Date: Mon, 8 Jun 2026 20:40:45 +0200 Subject: [PATCH] Add missing `package-info.java`s for event packages --- .../api/event/command/package-info.java | 11 +++++++++++ .../api/event/player/configuration/package-info.java | 11 +++++++++++ .../api/event/proxy/server/package-info.java | 11 +++++++++++ 3 files changed, 33 insertions(+) create mode 100644 api/src/main/java/com/velocitypowered/api/event/command/package-info.java create mode 100644 api/src/main/java/com/velocitypowered/api/event/player/configuration/package-info.java create mode 100644 api/src/main/java/com/velocitypowered/api/event/proxy/server/package-info.java diff --git a/api/src/main/java/com/velocitypowered/api/event/command/package-info.java b/api/src/main/java/com/velocitypowered/api/event/command/package-info.java new file mode 100644 index 0000000000..566924f2f0 --- /dev/null +++ b/api/src/main/java/com/velocitypowered/api/event/command/package-info.java @@ -0,0 +1,11 @@ +/* + * Copyright (C) 2018 Velocity Contributors + * + * The Velocity API is licensed under the terms of the MIT License. For more details, + * reference the LICENSE file in the api top-level directory. + */ + +/** + * Provides events for handling command execution. + */ +package com.velocitypowered.api.event.command; diff --git a/api/src/main/java/com/velocitypowered/api/event/player/configuration/package-info.java b/api/src/main/java/com/velocitypowered/api/event/player/configuration/package-info.java new file mode 100644 index 0000000000..b789c71165 --- /dev/null +++ b/api/src/main/java/com/velocitypowered/api/event/player/configuration/package-info.java @@ -0,0 +1,11 @@ +/* + * Copyright (C) 2018 Velocity Contributors + * + * The Velocity API is licensed under the terms of the MIT License. For more details, + * reference the LICENSE file in the api top-level directory. + */ + +/** + * Provides events for handling the player configuration phase. + */ +package com.velocitypowered.api.event.player.configuration; diff --git a/api/src/main/java/com/velocitypowered/api/event/proxy/server/package-info.java b/api/src/main/java/com/velocitypowered/api/event/proxy/server/package-info.java new file mode 100644 index 0000000000..c87588ce5a --- /dev/null +++ b/api/src/main/java/com/velocitypowered/api/event/proxy/server/package-info.java @@ -0,0 +1,11 @@ +/* + * Copyright (C) 2018 Velocity Contributors + * + * The Velocity API is licensed under the terms of the MIT License. For more details, + * reference the LICENSE file in the api top-level directory. + */ + +/** + * Provides events for handling registration of servers on the proxy. + */ +package com.velocitypowered.api.event.proxy.server;