Replace space indentation with tabs
Issue: SPR-10127
This commit is contained in:
committed by
Chris Beams
parent
1762157ad1
commit
2cf45bad86
@@ -69,7 +69,7 @@ public abstract class ComponentControllerSupport extends ControllerSupport {
|
||||
public final void perform(
|
||||
ComponentContext componentContext, HttpServletRequest request,
|
||||
HttpServletResponse response, ServletContext servletContext)
|
||||
throws ServletException, IOException {
|
||||
throws ServletException, IOException {
|
||||
|
||||
try {
|
||||
execute(componentContext, request, response, servletContext);
|
||||
@@ -97,7 +97,7 @@ public abstract class ComponentControllerSupport extends ControllerSupport {
|
||||
public final void execute(
|
||||
ComponentContext componentContext, HttpServletRequest request,
|
||||
HttpServletResponse response, ServletContext servletContext)
|
||||
throws Exception {
|
||||
throws Exception {
|
||||
|
||||
synchronized (this) {
|
||||
if (this.webApplicationContext == null) {
|
||||
|
||||
@@ -138,7 +138,7 @@ public class TilesView extends InternalResourceView {
|
||||
* @return the component definition
|
||||
*/
|
||||
protected ComponentDefinition getComponentDefinition(DefinitionsFactory factory, HttpServletRequest request)
|
||||
throws Exception {
|
||||
throws Exception {
|
||||
return factory.getDefinition(getUrl(), request, getServletContext());
|
||||
}
|
||||
|
||||
|
||||
@@ -340,7 +340,7 @@ public class ContextLoaderPlugIn implements PlugIn {
|
||||
wac.setNamespace(getNamespace());
|
||||
if (getContextConfigLocation() != null) {
|
||||
wac.setConfigLocations(
|
||||
StringUtils.tokenizeToStringArray(
|
||||
StringUtils.tokenizeToStringArray(
|
||||
getContextConfigLocation(), ConfigurableWebApplicationContext.CONFIG_LOCATION_DELIMITERS));
|
||||
}
|
||||
wac.addBeanFactoryPostProcessor(
|
||||
|
||||
Reference in New Issue
Block a user