mirror of
https://github.com/jlengrand/vert.x.git
synced 2026-03-10 08:51:19 +00:00
Remove unused Vertx instance in AsyncMapTest leaking file descriptor
This commit is contained in:
@@ -835,17 +835,12 @@ public abstract class AsyncMapTest extends VertxTestBase {
|
||||
|
||||
public static final class SomeClusterSerializableObject implements ClusterSerializable {
|
||||
private String str;
|
||||
// Trick smart data grid marshallers: make sure ClusterSerializable methods are the only way to serialize and deserialize this class
|
||||
@SuppressWarnings("unused")
|
||||
private final Vertx vertx;
|
||||
|
||||
public SomeClusterSerializableObject() {
|
||||
vertx = Vertx.vertx();
|
||||
}
|
||||
|
||||
public SomeClusterSerializableObject(String str) {
|
||||
this.str = str;
|
||||
vertx = Vertx.vertx();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user