summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-11-08 11:07:20 +0100
committerJon Bratseth <bratseth@yahoo-inc.com>2017-11-08 11:07:20 +0100
commit35902ad62a38ec923a6cd596b82d1a76270113a3 (patch)
tree0b1da4f27377655332fbdc269afee08e73886ddb /jdisc_core
parent87791e3ee279c2e0cc22db9c474b8ad1be53789d (diff)
Nonfunctional changes only
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/application/ContainerThread.java5
1 files changed, 3 insertions, 2 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 4506a63ac6d..1e947d44fcd 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
@@ -22,8 +22,8 @@ public class ContainerThread extends Thread {
* 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.
+ * @param target the object whose <code>run</code> method is called.
+ * @param consumer the MetricConsumer of this thread.
*/
public ContainerThread(Runnable target, MetricConsumer consumer) {
super(target);
@@ -56,6 +56,7 @@ public class ContainerThread extends Thread {
public Thread newThread(Runnable target) {
return new ContainerThread(target, provider.get());
}
+
}
}