You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2020/06/05 13:06:06 UTC

[openwebbeans] branch master updated: removing inheritdoc annotation

This is an automated email from the ASF dual-hosted git repository.

gerdogdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwebbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 015c0b1  removing inheritdoc annotation
015c0b1 is described below

commit 015c0b1cbbd3e13c33895892e9a355406847eb10
Author: Gurkan Erdogdu <cg...@gmail.com>
AuthorDate: Fri Jun 5 16:05:48 2020 +0300

    removing inheritdoc annotation
---
 .../se/DefaultApplicationBoundaryService.java       |  9 ---------
 .../servlet/WebBeansConfigurationListener.java      | 21 ---------------------
 2 files changed, 30 deletions(-)

diff --git a/webbeans-impl/src/main/java/org/apache/webbeans/corespi/se/DefaultApplicationBoundaryService.java b/webbeans-impl/src/main/java/org/apache/webbeans/corespi/se/DefaultApplicationBoundaryService.java
index 9c39d69..ead16ba 100644
--- a/webbeans-impl/src/main/java/org/apache/webbeans/corespi/se/DefaultApplicationBoundaryService.java
+++ b/webbeans-impl/src/main/java/org/apache/webbeans/corespi/se/DefaultApplicationBoundaryService.java
@@ -70,18 +70,12 @@ public class DefaultApplicationBoundaryService implements ApplicationBoundarySer
 
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public ClassLoader getApplicationClassLoader()
     {
         return applicationClassLoader;
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public ClassLoader getBoundaryClassLoader(Class classToProxy)
     {
@@ -123,9 +117,6 @@ public class DefaultApplicationBoundaryService implements ApplicationBoundarySer
         return parentClassLoaders.contains(classToProxyClassLoader);
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void close() throws IOException
     {
diff --git a/webbeans-web/src/main/java/org/apache/webbeans/servlet/WebBeansConfigurationListener.java b/webbeans-web/src/main/java/org/apache/webbeans/servlet/WebBeansConfigurationListener.java
index bd59e99..c910f9c 100644
--- a/webbeans-web/src/main/java/org/apache/webbeans/servlet/WebBeansConfigurationListener.java
+++ b/webbeans-web/src/main/java/org/apache/webbeans/servlet/WebBeansConfigurationListener.java
@@ -80,9 +80,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
         contextsService = webBeansContext.getContextsService();
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void contextInitialized(ServletContextEvent event)
     {
@@ -90,9 +87,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
     }
 
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void requestInitialized(ServletRequestEvent event)
     {
@@ -116,9 +110,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
         }
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void sessionCreated(HttpSessionEvent event)
     {
@@ -138,9 +129,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
         }
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void contextDestroyed(ServletContextEvent event)
     {
@@ -153,9 +141,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
         cleanupRequestThreadLocals();
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void requestDestroyed(ServletRequestEvent event)
     {
@@ -177,9 +162,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
     }
 
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public void sessionDestroyed(HttpSessionEvent event)
     {
@@ -260,9 +242,6 @@ public class WebBeansConfigurationListener implements ServletContextListener, Se
      */
     public static class Auto implements ServletContainerInitializer
     {
-        /**
-         * {@inheritDoc}
-         */
         @Override
         public void onStartup(final Set<Class<?>> set, final ServletContext servletContext)
         {