aboutsummaryrefslogtreecommitdiffstats
path: root/container-messagebus
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-08-12 09:24:28 +0200
committerJon Marius Venstad <venstad@gmail.com>2021-08-16 21:01:03 +0200
commitee1206280e3def2656a0c52bf892448a87ede124 (patch)
tree3078e972746cd7bdd09d71eb5c148f5f5b832d63 /container-messagebus
parentf6510a771d4a8b00d3027131f6071e95a56b04bd (diff)
Non-functional changes
Diffstat (limited to 'container-messagebus')
-rw-r--r--container-messagebus/src/main/java/com/yahoo/container/jdisc/messagebus/SessionCache.java2
-rw-r--r--container-messagebus/src/main/java/com/yahoo/messagebus/shared/NullNetwork.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/container-messagebus/src/main/java/com/yahoo/container/jdisc/messagebus/SessionCache.java b/container-messagebus/src/main/java/com/yahoo/container/jdisc/messagebus/SessionCache.java
index cfb3223a4f0..850cfc0b4bf 100644
--- a/container-messagebus/src/main/java/com/yahoo/container/jdisc/messagebus/SessionCache.java
+++ b/container-messagebus/src/main/java/com/yahoo/container/jdisc/messagebus/SessionCache.java
@@ -49,7 +49,7 @@ import java.util.logging.Logger;
// MbusClient, with or without throttling. This introduced the problem of ownership during shutdown,
// which was solved with manual reference counting. This is all much better solved with DI, which (now)
// owns everything, and does component shutdown in reverse construction order, which is always right.
-// So for the sake everyone's mental health, this should all just be removed now! I suspect this is
+// So for the sake of everyone's mental health, this should all just be removed now! I suspect this is
// even the case for Request; we can track in handlers, and warn when requests have been misplaced.
public final class SessionCache extends AbstractComponent {
diff --git a/container-messagebus/src/main/java/com/yahoo/messagebus/shared/NullNetwork.java b/container-messagebus/src/main/java/com/yahoo/messagebus/shared/NullNetwork.java
index ad58d6b9a5e..bef3fdc1e34 100644
--- a/container-messagebus/src/main/java/com/yahoo/messagebus/shared/NullNetwork.java
+++ b/container-messagebus/src/main/java/com/yahoo/messagebus/shared/NullNetwork.java
@@ -12,7 +12,7 @@ import java.util.List;
/**
* <p>Used by SharedMessageBus as a network when the container runs in LocalApplication with no network services.</p>
*
- * @author <a href="mailto:vegardh@yahoo-inc.com">Vegard Havdal</a>
+ * @author Vegard Havdal
*/
class NullNetwork implements Network {