Fix javadoc warnings
Before this change there were numerous javadoc warnings being reported while building Spring framework API. This commit resolves most of the javadoc warnings, reducing the total number from 265 to 103. Issue: SPR-9113
This commit is contained in:
committed by
Chris Beams
parent
e830511e8a
commit
effb762558
@@ -963,7 +963,6 @@ public class DispatcherPortlet extends FrameworkPortlet {
|
||||
* Return the HandlerExecutionChain for this request.
|
||||
* Try all handler mappings in order.
|
||||
* @param request current portlet request
|
||||
* @param cache whether to cache the HandlerExecutionChain in a request attribute
|
||||
* @return the HandlerExceutionChain, or null if no handler could be found
|
||||
*/
|
||||
protected HandlerExecutionChain getHandler(PortletRequest request) throws Exception {
|
||||
|
||||
@@ -91,7 +91,7 @@ public abstract class AbstractRefreshablePortletApplicationContext extends Abstr
|
||||
* {@inheritDoc}
|
||||
* <p>The parent {@linkplain #getEnvironment() environment} is
|
||||
* delegated to this (child) context if the parent is a
|
||||
* {@link ConfigurableApplicationContext} implementation.
|
||||
* {@link org.springframework.context.ConfigurableApplicationContext} implementation.
|
||||
* <p>The parent {@linkplain #getServletContext() servlet context} is
|
||||
* delegated to this (child) context if the parent is a {@link WebApplicationContext}
|
||||
* implementation.
|
||||
|
||||
@@ -54,7 +54,7 @@ public class PortletContextScope implements Scope, DisposableBean {
|
||||
|
||||
/**
|
||||
* Create a new Scope wrapper for the given PortletContext.
|
||||
* @param PortletContext the PortletContext to wrap
|
||||
* @param portletContext the PortletContext to wrap
|
||||
*/
|
||||
public PortletContextScope(PortletContext portletContext) {
|
||||
Assert.notNull(portletContext, "PortletContext must not be null");
|
||||
|
||||
@@ -88,7 +88,7 @@ public class StaticPortletApplicationContext extends StaticApplicationContext
|
||||
* {@inheritDoc}
|
||||
* <p>The parent {@linkplain #getEnvironment() environment} is
|
||||
* delegated to this (child) context if the parent is a
|
||||
* {@link ConfigurableApplicationContext} implementation.
|
||||
* {@link org.springframework.context.ConfigurableApplicationContext} implementation.
|
||||
* <p>The parent {@linkplain #getServletContext() servlet context} is
|
||||
* delegated to this (child) context if the parent is a {@link WebApplicationContext}
|
||||
* implementation.
|
||||
|
||||
@@ -55,7 +55,6 @@ public class PortletRequestMethodNotSupportedException extends PortletException
|
||||
|
||||
/**
|
||||
* Create a new PortletRequestMethodNotSupportedException.
|
||||
* @param method the unsupported HTTP request method
|
||||
* @param supportedMethods the actually supported HTTP methods
|
||||
*/
|
||||
public PortletRequestMethodNotSupportedException(String[] supportedMethods) {
|
||||
|
||||
Reference in New Issue
Block a user