Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-23 17:27:11 +0000
committerJoakim Erdfelt2015-04-23 17:27:11 +0000
commit697e839224c765eac8115cd267ad98b293ba3776 (patch)
treee4e2d9279ac7322ab3fd9e7f0bf0f55699804335 /jetty-plus
parent40d91775cacef81112ae00ddd1ec30da168f5eef (diff)
downloadorg.eclipse.jetty.project-697e839224c765eac8115cd267ad98b293ba3776.tar.gz
org.eclipse.jetty.project-697e839224c765eac8115cd267ad98b293ba3776.tar.xz
org.eclipse.jetty.project-697e839224c765eac8115cd267ad98b293ba3776.zip
Fixing compact3 build
Diffstat (limited to 'jetty-plus')
-rw-r--r--jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java10
1 files changed, 2 insertions, 8 deletions
diff --git a/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java b/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java
index 656ce8159a..079c9259f6 100644
--- a/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java
+++ b/jetty-plus/src/main/java/org/eclipse/jetty/plus/annotation/LifeCycleCallbackCollection.java
@@ -25,17 +25,11 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import javax.annotation.PostConstruct;
-import javax.annotation.PreDestroy;
-
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
-
/**
* LifeCycleCallbackCollection
- *
- *
*/
public class LifeCycleCallbackCollection
{
@@ -98,7 +92,7 @@ public class LifeCycleCallbackCollection
}
/**
- * Call the method, if one exists, that is annotated with {@link PostConstruct}
+ * Call the method, if one exists, that is annotated with <code>&#064;PostConstruct</code>
* or with <code>&lt;post-construct&gt;</code> in web.xml
* @param o the object on which to attempt the callback
* @throws Exception if unable to call {@link PostConstructCallback}
@@ -123,7 +117,7 @@ public class LifeCycleCallbackCollection
/**
- * Call the method, if one exists, that is annotated with {@link PreDestroy}
+ * Call the method, if one exists, that is annotated with <code>&#064;PreDestroy</code>
* or with <code>&lt;pre-destroy&gt;</code> in web.xml
* @param o the object on which to attempt the callback
* @throws Exception if unable to call {@link PreDestroyCallback}

Back to the top