summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorstonar96 <[email protected]>2022-07-28 10:30:32 +0200
committerGitHub <[email protected]>2022-07-28 10:30:32 +0200
commit2acb479b41f1b248761f4a9b2ade319273841758 (patch)
tree28d43ae880afa9b67cfaa803a9f89bd70a906df7
parent4a4ee79cd6a70811e9d62c58abc5f3b6a8627f5c (diff)
downloadPaper-2acb479b41f1b248761f4a9b2ade319273841758.tar.gz
Paper-2acb479b41f1b248761f4a9b2ade319273841758.zip
[ci skip] Fix xray patch code style (#8196)
-rw-r--r--patches/server/0353-Anti-Xray.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/server/0353-Anti-Xray.patch b/patches/server/0353-Anti-Xray.patch
index f8859ea793..ba104ce56f 100644
--- a/patches/server/0353-Anti-Xray.patch
+++ b/patches/server/0353-Anti-Xray.patch
@@ -1265,10 +1265,10 @@ index 78e20871e4bd8d92c4475f797a55733c68f6aeb4..723608946947fa2792c7284fa5faa85a
- public static <T> Codec<PalettedContainer<T>> codecRW(IdMap<T> idList, Codec<T> entryCodec, PalettedContainer.Strategy paletteProvider, T defaultValue) {
- PalettedContainerRO.Unpacker<T, PalettedContainer<T>> unpacker = PalettedContainer::unpack;
+ // Paper start - Anti-Xray - Add preset values
-+ @Deprecated @io.papermc.paper.annotation.DoNotUse public static <T> Codec<PalettedContainer<T>> codecRW(IdMap<T> idList, Codec<T> entryCodec, PalettedContainer.Strategy paletteProvider, T defaultValue) {return codecRW(idList, entryCodec, paletteProvider, defaultValue, null);}
++ @Deprecated @io.papermc.paper.annotation.DoNotUse public static <T> Codec<PalettedContainer<T>> codecRW(IdMap<T> idList, Codec<T> entryCodec, PalettedContainer.Strategy paletteProvider, T defaultValue) { return PalettedContainer.codecRW(idList, entryCodec, paletteProvider, defaultValue, null); }
+ public static <T> Codec<PalettedContainer<T>> codecRW(IdMap<T> idList, Codec<T> entryCodec, PalettedContainer.Strategy paletteProvider, T defaultValue, T @org.jetbrains.annotations.Nullable [] presetValues) {
-+ PalettedContainerRO.Unpacker<T, PalettedContainer<T>> unpacker = (idMapx, strategyx, packedData) -> {
-+ return unpack(idMapx, strategyx, packedData, defaultValue, presetValues);
++ PalettedContainerRO.Unpacker<T, PalettedContainer<T>> unpacker = (idListx, paletteProviderx, serialized) -> {
++ return unpack(idListx, paletteProviderx, serialized, defaultValue, presetValues);
+ };
+ // Paper end
return codec(idList, entryCodec, paletteProvider, defaultValue, unpacker);