summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java b/jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java
index aa4fc4d1b18..a2e447dddf1 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/core/BootstrapLoader.java
@@ -2,15 +2,15 @@
package com.yahoo.jdisc.core;
/**
- * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ * @author Simon Thoresen
*/
public interface BootstrapLoader {
- public void init(String bundleLocation, boolean privileged) throws Exception;
+ void init(String bundleLocation, boolean privileged) throws Exception;
- public void start() throws Exception;
+ void start() throws Exception;
- public void stop() throws Exception;
+ void stop() throws Exception;
- public void destroy();
+ void destroy();
}