File tree Expand file tree Collapse file tree 2 files changed +0
-28
lines changed
citrus-remote-server/src/main/java/org/citrusframework/remote Expand file tree Collapse file tree 2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -88,23 +88,6 @@ public class CitrusRemoteApplication extends AbstractVerticle {
88
88
private final JsonRequestTransformer requestTransformer = new JsonRequestTransformer ();
89
89
private final JsonResponseTransformer responseTransformer = new JsonResponseTransformer ();
90
90
91
- /**
92
- * Default constructor using default configuration.
93
- */
94
- @ SuppressWarnings ("unused" )
95
- public CitrusRemoteApplication () {
96
- this (new CitrusRemoteConfiguration ());
97
- }
98
-
99
- /**
100
- * Constructor with given application configuration.
101
- * @param configuration
102
- */
103
- public CitrusRemoteApplication (
104
- CitrusRemoteConfiguration configuration ) {
105
- this (configuration , Collections .emptyList ());
106
- }
107
-
108
91
/**
109
92
* Constructor with given application configuration and route customizations.
110
93
* @param configuration
Original file line number Diff line number Diff line change @@ -51,17 +51,6 @@ public class CitrusRemoteServer {
51
51
/** Completed future marking completed state */
52
52
protected final CompletableFuture <Boolean > completed = new CompletableFuture <>();
53
53
54
- /**
55
- * Default constructor initializing controller and configuration.
56
- */
57
- public CitrusRemoteServer () {
58
- this (new CitrusRemoteConfiguration ());
59
- }
60
-
61
- public CitrusRemoteServer (CitrusRemoteConfiguration citrusRemoteConfiguration ) {
62
- this (citrusRemoteConfiguration , Collections .emptyList ());
63
- }
64
-
65
54
/**
66
55
* Default constructor using controller and configuration.
67
56
* @param configuration
You can’t perform that action at this time.
0 commit comments