From bcf1bba3a14107a517130b5709402e602ff8cc8a Mon Sep 17 00:00:00 2001 From: Wouter Gritter Date: Mon, 15 Jun 2026 16:48:08 +0200 Subject: [PATCH] Add missing `package-info.java`s for event packages (#1822) --- .../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 000000000..566924f2f --- /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 000000000..b789c7116 --- /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 000000000..c87588ce5 --- /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;