summaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-06-28 13:25:11 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-06-28 13:25:11 +0200
commitad72797f64aa251e85ba8c4a7a36c0263307dec7 (patch)
tree0940b836e12869d49f54524f1c6f7b2809c83b42 /vespajlib
parentb32248cf458a04ffe3cfcf0242e2edc6e28461a8 (diff)
Nonfunctional changes only
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/concurrent/CopyOnWriteHashMap.java5
-rw-r--r--vespajlib/src/main/java/com/yahoo/concurrent/DaemonThreadFactory.java2
-rw-r--r--vespajlib/src/main/java/com/yahoo/concurrent/EventBarrier.java4
3 files changed, 5 insertions, 6 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/concurrent/CopyOnWriteHashMap.java b/vespajlib/src/main/java/com/yahoo/concurrent/CopyOnWriteHashMap.java
index 8b6392285c5..aff2b6af2f0 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/CopyOnWriteHashMap.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/CopyOnWriteHashMap.java
@@ -7,13 +7,12 @@ import java.util.Map;
import java.util.Set;
/**
- * <p>This is a thread hash map for small collections that are stable once built. Until it is stable there will be a
+ * This is a thread hash map for small collections that are stable once built. Until it is stable there will be a
* race among all threads missing something in the map. They will then clone the map add the missing stuff and then put
* it back as active again. Here are no locks, but the cost is that inserts will happen a lot more than necessary. The
- * map reference is volatile, but on most multicpu machines that has no cost unless modified.</p>
+ * map reference is volatile, but on most multicpu machines that has no cost unless modified.
*
* @author baldersheim
- * @since 5.2
*/
public class CopyOnWriteHashMap<K, V> implements Map<K, V> {
diff --git a/vespajlib/src/main/java/com/yahoo/concurrent/DaemonThreadFactory.java b/vespajlib/src/main/java/com/yahoo/concurrent/DaemonThreadFactory.java
index 92b35c4cc0b..4c15b6e2365 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/DaemonThreadFactory.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/DaemonThreadFactory.java
@@ -8,7 +8,7 @@ import java.util.concurrent.ThreadFactory;
* A simple thread factory that decorates <code>Executors.defaultThreadFactory()</code>
* and sets all created threads to be daemon threads.
*
- * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
+ * @author Einar M R Rosenvinge
*/
public class DaemonThreadFactory implements ThreadFactory {
private ThreadFactory defaultThreadFactory = Executors.defaultThreadFactory();
diff --git a/vespajlib/src/main/java/com/yahoo/concurrent/EventBarrier.java b/vespajlib/src/main/java/com/yahoo/concurrent/EventBarrier.java
index 79402d928fc..8130c369b75 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/EventBarrier.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/EventBarrier.java
@@ -16,8 +16,8 @@ import java.util.List;
* algorithm would be to make a thread wait for events happening in
* other threads to complete.
*
- * @author <a href="mailto:havardpe@yahoo-inc.com">Haavard Pettersen</a>
- * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ * @author Haavard Pettersen
+ * @author Simon Thoresen
*/
public class EventBarrier {