Skip to content

Commit

Permalink
Remove usage of useFutures member
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Dec 10, 2024
1 parent ad3bf74 commit e767da8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/main/asciidoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ the appropriate EventBus proxy code.
.package-info.java
[source,java]
----
@io.vertx.codegen.annotations.ModuleGen(groupPackage = "io.vertx.example", name = "services", useFutures = true)
@io.vertx.codegen.annotations.ModuleGen(groupPackage = "io.vertx.example", name = "services")
package io.vertx.example;
----

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/examples/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

@Source(translate = false)
@ModuleGen(name = "examples", groupPackage = "examples", useFutures = true)
@ModuleGen(name = "examples", groupPackage = "examples")
package examples;

import io.vertx.codegen.annotations.ModuleGen;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/serviceproxy/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* You may elect to redistribute this code under either of these licenses.
*/

@ModuleGen(name = "vertx-service-proxy", groupPackage = "io.vertx", useFutures = true)
@ModuleGen(name = "vertx-service-proxy", groupPackage = "io.vertx")
package io.vertx.serviceproxy;

import io.vertx.codegen.annotations.ModuleGen;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @author <a href="mailto:[email protected]">Julien Viet</a>
*/
@ModuleGen(name = "test", groupPackage = "io.vertx", useFutures = true)
@ModuleGen(name = "test", groupPackage = "io.vertx")
package io.vertx.serviceproxy.tests.clustered;

import io.vertx.codegen.annotations.ModuleGen;
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@ModuleGen(name = "dummy", groupPackage = "io.vertx", useFutures = true)
@ModuleGen(name = "dummy", groupPackage = "io.vertx")
package io.vertx.serviceproxy.tests.codegen.future;

import io.vertx.codegen.annotations.ModuleGen;
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@ModuleGen(name = "dummy", groupPackage = "io.vertx", useFutures = true)
@ModuleGen(name = "dummy", groupPackage = "io.vertx")
package io.vertx.serviceproxy.tests.codegen.proxytestapi;

import io.vertx.codegen.annotations.ModuleGen;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @author <a href="mailto:[email protected]">Julien Viet</a>
*/
@ModuleGen(name = "test", groupPackage = "io.vertx", useFutures = true)
@ModuleGen(name = "test", groupPackage = "io.vertx")
package io.vertx.serviceproxy.tests.testmodel;

import io.vertx.codegen.annotations.ModuleGen;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @author <a href="mailto:[email protected]">Julien Viet</a>
*/
@ModuleGen(name = "test", groupPackage = "io.vertx", useFutures = true)
@ModuleGen(name = "test", groupPackage = "io.vertx")
package io.vertx.serviceproxy.tests.testmodel2;

import io.vertx.codegen.annotations.ModuleGen;

0 comments on commit e767da8

Please sign in to comment.