From 400838503972b3aa5accc7b9f1f9ab95dee0c658 Mon Sep 17 00:00:00 2001 From: gregw Date: Tue, 25 Aug 2020 14:12:46 +0200 Subject: [PATCH] Fixed javadoc --- .../src/main/java/org/eclipse/jetty/cdi/CdiSpiDecorator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jetty-cdi/src/main/java/org/eclipse/jetty/cdi/CdiSpiDecorator.java b/jetty-cdi/src/main/java/org/eclipse/jetty/cdi/CdiSpiDecorator.java index ad6983e38602..dd63b9d76b27 100644 --- a/jetty-cdi/src/main/java/org/eclipse/jetty/cdi/CdiSpiDecorator.java +++ b/jetty-cdi/src/main/java/org/eclipse/jetty/cdi/CdiSpiDecorator.java @@ -97,7 +97,7 @@ public CdiSpiDecorator(ServletContextHandler context) throws UnsupportedOperatio /** * Test if a class can be decorated. - * @implNote The default implementation calls {@link #isKnownUndecoratable(String) } + * The default implementation calls {@link #isKnownUndecoratable(String) } * on the class and all it's super classes. * @param clazz The class to check * @return True if the class and all it's super classes can be decorated @@ -113,7 +113,7 @@ protected boolean isDecoratable(Class clazz) /** * Test if a specific class name is known to not be decoratable. - * @implNote default implementation checks for well known classes that are used to + * The default implementation checks for well known classes that are used to * setup CDI itself, and thus cannot themselves be decorated. * @see #isDecoratable(Class) * @param className The name of the class to check