aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-08-23 12:16:56 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-08-23 12:16:56 +0200
commit0c12b05e67db17208d69c5741f9eb1fefbac2c1a (patch)
tree8d268e9cdcccc22d2e66c72070b8b94cd6898a49 /jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java
parent2c4be7ca749a7544424ed811af7a0a5728d401c4 (diff)
Whitespace changes only
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java b/jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java
index 38527acc099..7ceb3a1e765 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java
@@ -12,15 +12,15 @@ import java.util.concurrent.ThreadFactory;
* application should use this class instead of Thread. The {@link ContainerThread.Factory} class is a helper-class for
* working with the {@link Executors} framework.</p>
*
- * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ * @author Simon Thoresen
*/
public class ContainerThread extends Thread {
private final MetricConsumer consumer;
/**
- * <p>Allocates a new ContainerThread object. This constructor calls the parent {@link Thread#Thread(Runnable)}
- * constructor.</p>
+ * Allocates a new ContainerThread object. This constructor calls the parent {@link Thread#Thread(Runnable)}
+ * constructor.
*
* @param target The object whose <code>run</code> method is called.
* @param consumer The MetricConsumer of this thread.
@@ -40,8 +40,8 @@ public class ContainerThread extends Thread {
}
/**
- * <p>This class implements the {@link ThreadFactory} interface on top of a {@link Provider} for {@link
- * MetricConsumer} instances.</p>
+ * This class implements the {@link ThreadFactory} interface on top of a {@link Provider} for {@link
+ * MetricConsumer} instances.
*/
public static class Factory implements ThreadFactory {
@@ -57,4 +57,5 @@ public class ContainerThread extends Thread {
return new ContainerThread(target, provider.get());
}
}
+
}