aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2021-09-27 14:09:40 +0200
committerGitHub <noreply@github.com>2021-09-27 14:09:40 +0200
commite23ba7cc2020e5949543aa4db1af8b23373cb9df (patch)
tree3473a584f3705fa3b67ebe45b9e742e19914e40e /vespajlib
parentf06a5e8921ea16da7b64591223e4533f04e858df (diff)
parentf144f291504fe451e5220257ecb2b6dcbd30fecc (diff)
Merge pull request #19285 from vespa-engine/jonmv/shut-down-RPC-when-no-message-bus-owner-remain
Shut down network when all owners also have detached
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/collections/CopyOnWriteHashMap.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/collections/CopyOnWriteHashMap.java b/vespajlib/src/main/java/com/yahoo/collections/CopyOnWriteHashMap.java
index 857b7cc6acd..98370a8735a 100644
--- a/vespajlib/src/main/java/com/yahoo/collections/CopyOnWriteHashMap.java
+++ b/vespajlib/src/main/java/com/yahoo/collections/CopyOnWriteHashMap.java
@@ -9,7 +9,7 @@ import java.util.Map;
import java.util.Set;
/**
- * A hashmap wrapper which defers cloning of the enclosed map until it is written.
+ * A hashmap wrapper which defers cloning of the enclosed map until it is written to.
* Use this to make clones cheap in maps which are often not further modified.
* <p>
* As with regular maps, this can only be used safely if the content of the map is immutable.