From e2c6e637a4e8d884251cee24f1ee61a8e8bd6775 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Thu, 16 Jan 2014 00:04:20 +0100 Subject: [PATCH] Polishing --- .../web/context/support/WebApplicationContextUtils.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/context/support/WebApplicationContextUtils.java b/spring-web/src/main/java/org/springframework/web/context/support/WebApplicationContextUtils.java index ff230d3e377..37c923e72fa 100644 --- a/spring-web/src/main/java/org/springframework/web/context/support/WebApplicationContextUtils.java +++ b/spring-web/src/main/java/org/springframework/web/context/support/WebApplicationContextUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -47,11 +47,11 @@ import org.springframework.web.context.request.WebRequest; /** * Convenience methods for retrieving the root * {@link org.springframework.web.context.WebApplicationContext} for a given - * {@code ServletContext}. This is e.g. useful for accessing a Spring - * context from within custom web views or Struts actions. + * {@code ServletContext}. This is useful for programmatically accessing a + * Spring application context from within custom web views or MVC actions. * *

Note that there are more convenient ways of accessing the root context for - * many web frameworks, either part of Spring or available as external library. + * many web frameworks, either part of Spring or available as an external library. * This helper class is just the most generic way to access the root context. * * @author Juergen Hoeller