forked from retrooper/packetevents
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-add deprecated FabricPacketEventsBuilder for some backwards compat…
…ibility
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
...lient/java/io/github/retrooper/packetevents/factory/fabric/FabricPacketEventsBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* This file is part of packetevents - https://github.com/retrooper/packetevents | ||
* Copyright (C) 2024 retrooper and contributors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package io.github.retrooper.packetevents.factory.fabric; | ||
|
||
import com.github.retrooper.packetevents.PacketEventsAPI; | ||
import com.github.retrooper.packetevents.settings.PacketEventsSettings; | ||
import io.github.retrooper.packetevents.PacketEventsClientMod; | ||
|
||
/** | ||
* You should, if possible, never construct a packetevents instance on your own | ||
* and preferable jar-in-jar the packetevents fabric platform. | ||
* <p> | ||
* If you still want to create your own packetevents instance, which is not | ||
* recommended, use {@link PacketEventsClientMod#constructApi(String)} or | ||
* {@link io.github.retrooper.packetevents.PacketEventsServerMod#constructApi(String)}. | ||
* | ||
* @deprecated flawed concept and doesn't support both client and server | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
public final class FabricPacketEventsBuilder { | ||
|
||
private FabricPacketEventsBuilder() { | ||
} | ||
|
||
public static void clearBuildCache() { | ||
} | ||
|
||
public static PacketEventsAPI<?> build(String modId) { | ||
return buildNoCache(modId); | ||
} | ||
|
||
public static PacketEventsAPI<?> build(String modId, PacketEventsSettings settings) { | ||
return buildNoCache(modId, settings); | ||
} | ||
|
||
public static PacketEventsAPI<?> buildNoCache(String modId) { | ||
return buildNoCache(modId, new PacketEventsSettings()); | ||
} | ||
|
||
public static PacketEventsAPI<?> buildNoCache(String modId, PacketEventsSettings inSettings) { | ||
return PacketEventsClientMod.constructApi(modId); | ||
} | ||
} |