Skip to content

Commit

Permalink
CAMEL-21080: avoid duplicating configuration
Browse files Browse the repository at this point in the history
- route builder defaults in camel-http
- route coverage defaults in camel-route-parser
  • Loading branch information
orpiske committed Sep 24, 2024
1 parent f4f8585 commit eaa34d0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@

public class RoasterJavaRestDslTest extends CamelTestSupport {

@Override
public boolean isDumpRouteCoverage() {
return false;
}

@Test
void parseRestConfiguration() throws Exception {
JavaClassSource clazz = (JavaClassSource) Roaster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,6 @@ public void configure() {
assertRefused(exchange, ":80");
}

@Override
public boolean isUseRouteBuilder() {
return true;
}

private void assertRefused(Exchange exchange, String portExt) {
Map<String, Object> headers = exchange.getMessage().getHeaders();
//no http response:
Expand Down

0 comments on commit eaa34d0

Please sign in to comment.