This is an automated email from the ASF dual-hosted git repository.
zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 1ff7555eb15 Remove useless constructor of ShardingSphereProxyContainer
(#32222)
1ff7555eb15 is described below
commit 1ff7555eb1552b47a76de5b21c7a26e8c731c34e
Author: Liang Zhang <[email protected]>
AuthorDate: Mon Jul 22 01:13:53 2024 +0800
Remove useless constructor of ShardingSphereProxyContainer (#32222)
---
.../test/e2e/agent/engine/container/ShardingSphereProxyContainer.java | 4 ----
1 file changed, 4 deletions(-)
diff --git
a/test/e2e/agent/engine/src/test/java/org/apache/shardingsphere/test/e2e/agent/engine/container/ShardingSphereProxyContainer.java
b/test/e2e/agent/engine/src/test/java/org/apache/shardingsphere/test/e2e/agent/engine/container/ShardingSphereProxyContainer.java
index 479b26fe0e9..23b0b7028f4 100644
---
a/test/e2e/agent/engine/src/test/java/org/apache/shardingsphere/test/e2e/agent/engine/container/ShardingSphereProxyContainer.java
+++
b/test/e2e/agent/engine/src/test/java/org/apache/shardingsphere/test/e2e/agent/engine/container/ShardingSphereProxyContainer.java
@@ -52,10 +52,6 @@ public final class ShardingSphereProxyContainer extends
DockerITContainer {
private final Consumer<OutputFrame> consumer;
- public ShardingSphereProxyContainer(final String image, final String
plugin) {
- this(image, plugin, null);
- }
-
public ShardingSphereProxyContainer(final String image, final String
plugin, final Consumer<OutputFrame> consumer) {
super("proxy", image);
this.consumer = consumer;