From 16cbd2a281f66e400c75488bf131ce2d2f14fc99 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Tue, 10 Dec 2024 16:17:20 +0100 Subject: [PATCH] Remove from ModuleGen the unused useFutures/checkCallbackDeprecation members --- .../java/io/vertx/codegen/annotations/ModuleGen.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/vertx-codegen-api/src/main/java/io/vertx/codegen/annotations/ModuleGen.java b/vertx-codegen-api/src/main/java/io/vertx/codegen/annotations/ModuleGen.java index 7890dc881..e90a205f1 100644 --- a/vertx-codegen-api/src/main/java/io/vertx/codegen/annotations/ModuleGen.java +++ b/vertx-codegen-api/src/main/java/io/vertx/codegen/annotations/ModuleGen.java @@ -54,16 +54,4 @@ */ String groupPackage(); - /** - * Shall be removed in the future. - */ - @Deprecated - boolean useFutures() default false; - - /** - * Shall be removed in the future. - */ - @Deprecated - boolean checkCallbackDeprecation() default false; - }