summaryrefslogtreecommitdiffstats
path: root/component
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-03-06 09:48:54 +0100
committerJon Bratseth <bratseth@yahoo-inc.com>2017-03-06 09:48:54 +0100
commit9dd4c4880b42dd17c3bbaf1662eee9d8bbcad748 (patch)
treef9e8639fd015093c033c189bc00c94a2bac2087b /component
parent351903b75e5cf8feaa6606c139ee56e1caeccd23 (diff)
Shutdown renderer threads on deconstruct
Diffstat (limited to 'component')
-rw-r--r--component/src/main/java/com/yahoo/component/Component.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/component/src/main/java/com/yahoo/component/Component.java b/component/src/main/java/com/yahoo/component/Component.java
index e19993d657d..00538889049 100644
--- a/component/src/main/java/com/yahoo/component/Component.java
+++ b/component/src/main/java/com/yahoo/component/Component.java
@@ -13,8 +13,9 @@ package com.yahoo.component;
public interface Component extends Comparable<Component> {
/** Initializes this. Always called from a constructor or the framework. Do not call. */
- public void initId(ComponentId id);
+ void initId(ComponentId id);
/** Returns the id of this component */
- public ComponentId getId();
+ ComponentId getId();
+
}