Skip to content

Commit c75eba7

Browse files
committed
Polishing
1 parent 1f55b4f commit c75eba7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-webmvc/src/main/java/org/springframework/web/servlet/DispatcherServlet.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,14 +28,14 @@
2828
import java.util.Map;
2929
import java.util.Properties;
3030
import java.util.Set;
31-
3231
import javax.servlet.ServletContext;
3332
import javax.servlet.ServletException;
3433
import javax.servlet.http.HttpServletRequest;
3534
import javax.servlet.http.HttpServletResponse;
3635

3736
import org.apache.commons.logging.Log;
3837
import org.apache.commons.logging.LogFactory;
38+
3939
import org.springframework.beans.factory.BeanFactoryUtils;
4040
import org.springframework.beans.factory.BeanInitializationException;
4141
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
@@ -810,13 +810,13 @@ protected Object createDefaultStrategy(ApplicationContext context, Class<?> claz
810810
return context.getAutowireCapableBeanFactory().createBean(clazz);
811811
}
812812

813+
813814
/**
814815
* Exposes the DispatcherServlet-specific request attributes and delegates to {@link #doDispatch}
815816
* for the actual dispatching.
816817
*/
817818
@Override
818819
protected void doService(HttpServletRequest request, HttpServletResponse response) throws Exception {
819-
820820
if (logger.isDebugEnabled()) {
821821
String requestUri = urlPathHelper.getRequestUri(request);
822822
String resumed = WebAsyncUtils.getAsyncManager(request).hasConcurrentResult() ? " resumed" : "";

0 commit comments

Comments
 (0)