aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2021-01-07 06:52:22 +0100
committerGitHub <noreply@github.com>2021-01-07 06:52:22 +0100
commit9263966a9c697f5acff53a595493e27a2f05e683 (patch)
treec6a85dc50a71b2fb0b6f21ccc5da3a3c80db7ae0 /messagebus/src
parent84d629c5125f2e0afc93ed730875215cb68f1f38 (diff)
Revert "Keep reply with most severe error when merging error replies"
Diffstat (limited to 'messagebus/src')
-rw-r--r--messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingTable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingTable.java b/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingTable.java
index e3410cdba7d..82f409dbb44 100644
--- a/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingTable.java
+++ b/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingTable.java
@@ -13,8 +13,8 @@ import java.util.Map;
*/
public class RoutingTable {
- private final Map<String, HopBlueprint> hops = new LinkedHashMap<>();
- private final Map<String, Route> routes = new LinkedHashMap<>();
+ private final Map<String, HopBlueprint> hops = new LinkedHashMap<String, HopBlueprint>();
+ private final Map<String, Route> routes = new LinkedHashMap<String, Route>();
/**
* Creates a new routing table based on a given specification. This also verifies the integrity of the table.