mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-19 14:59:27 +00:00
Annotation processors use Java 16
So build stops complaining about it.
This commit is contained in:
@@ -30,7 +30,7 @@ import javax.annotation.processing.SupportedSourceVersion;
|
|||||||
import javax.lang.model.SourceVersion;
|
import javax.lang.model.SourceVersion;
|
||||||
|
|
||||||
@SupportedAnnotationTypes("*")
|
@SupportedAnnotationTypes("*")
|
||||||
@SupportedSourceVersion(SourceVersion.RELEASE_8)
|
@SupportedSourceVersion(SourceVersion.RELEASE_16)
|
||||||
public class BlockEntityProcessor extends ClassProcessor {
|
public class BlockEntityProcessor extends ClassProcessor {
|
||||||
public BlockEntityProcessor() {
|
public BlockEntityProcessor() {
|
||||||
super("org.geysermc.connector.network.translators.world.block.entity.BlockEntity");
|
super("org.geysermc.connector.network.translators.world.block.entity.BlockEntity");
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import javax.annotation.processing.SupportedSourceVersion;
|
|||||||
import javax.lang.model.SourceVersion;
|
import javax.lang.model.SourceVersion;
|
||||||
|
|
||||||
@SupportedAnnotationTypes("*")
|
@SupportedAnnotationTypes("*")
|
||||||
@SupportedSourceVersion(SourceVersion.RELEASE_8)
|
@SupportedSourceVersion(SourceVersion.RELEASE_16)
|
||||||
public class CollisionRemapperProcessor extends ClassProcessor {
|
public class CollisionRemapperProcessor extends ClassProcessor {
|
||||||
public CollisionRemapperProcessor() {
|
public CollisionRemapperProcessor() {
|
||||||
super("org.geysermc.connector.network.translators.collision.CollisionRemapper");
|
super("org.geysermc.connector.network.translators.collision.CollisionRemapper");
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import javax.annotation.processing.SupportedSourceVersion;
|
|||||||
import javax.lang.model.SourceVersion;
|
import javax.lang.model.SourceVersion;
|
||||||
|
|
||||||
@SupportedAnnotationTypes("*")
|
@SupportedAnnotationTypes("*")
|
||||||
@SupportedSourceVersion(SourceVersion.RELEASE_8)
|
@SupportedSourceVersion(SourceVersion.RELEASE_16)
|
||||||
public class ItemRemapperProcessor extends ClassProcessor {
|
public class ItemRemapperProcessor extends ClassProcessor {
|
||||||
public ItemRemapperProcessor() {
|
public ItemRemapperProcessor() {
|
||||||
super("org.geysermc.connector.network.translators.ItemRemapper");
|
super("org.geysermc.connector.network.translators.ItemRemapper");
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import javax.annotation.processing.SupportedSourceVersion;
|
|||||||
import javax.lang.model.SourceVersion;
|
import javax.lang.model.SourceVersion;
|
||||||
|
|
||||||
@SupportedAnnotationTypes("*")
|
@SupportedAnnotationTypes("*")
|
||||||
@SupportedSourceVersion(SourceVersion.RELEASE_8)
|
@SupportedSourceVersion(SourceVersion.RELEASE_16)
|
||||||
public class PacketTranslatorProcessor extends ClassProcessor {
|
public class PacketTranslatorProcessor extends ClassProcessor {
|
||||||
public PacketTranslatorProcessor() {
|
public PacketTranslatorProcessor() {
|
||||||
super("org.geysermc.connector.network.translators.Translator");
|
super("org.geysermc.connector.network.translators.Translator");
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import javax.annotation.processing.SupportedSourceVersion;
|
|||||||
import javax.lang.model.SourceVersion;
|
import javax.lang.model.SourceVersion;
|
||||||
|
|
||||||
@SupportedAnnotationTypes("*")
|
@SupportedAnnotationTypes("*")
|
||||||
@SupportedSourceVersion(SourceVersion.RELEASE_8)
|
@SupportedSourceVersion(SourceVersion.RELEASE_16)
|
||||||
public class SoundHandlerProcessor extends ClassProcessor {
|
public class SoundHandlerProcessor extends ClassProcessor {
|
||||||
public SoundHandlerProcessor() {
|
public SoundHandlerProcessor() {
|
||||||
super("org.geysermc.connector.network.translators.sound.SoundHandler");
|
super("org.geysermc.connector.network.translators.sound.SoundHandler");
|
||||||
|
|||||||
Reference in New Issue
Block a user