rleland 2002/10/29 18:29:15 Modified: src/share/org/apache/struts/util RequestUtils.java Log: rename getApplicationConfig to getModuleConfig no deprecation needed since this is unreleased. Revision Changes Path 1.66 +6 -6 jakarta-struts/src/share/org/apache/struts/util/RequestUtils.java Index: RequestUtils.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/util/RequestUtils.java,v retrieving revision 1.65 retrieving revision 1.66 diff -u -r1.65 -r1.66 --- RequestUtils.java 29 Oct 2002 21:04:38 -0000 1.65 +++ RequestUtils.java 30 Oct 2002 02:29:15 -0000 1.66 @@ -1487,7 +1487,7 @@ * @return the ApplicationConfig object * @since 1.1b3 */ - public static ApplicationConfig getApplicationConfig(PageContext pageContext) { + public static ApplicationConfig getModuleConfig(PageContext pageContext) { ApplicationConfig appConfig = (ApplicationConfig) pageContext.getRequest().getAttribute(Action.APPLICATION_KEY); if (appConfig == null) { // Backwards compatibility hack @@ -1504,7 +1504,7 @@ * @return the ApplicationConfig object * @since 1.1b3 */ - public static ApplicationConfig getApplicationConfig(HttpServletRequest request,ServletContext context) { + public static ApplicationConfig getModuleConfig(HttpServletRequest request,ServletContext context) { ApplicationConfig appConfig = (ApplicationConfig) request.getAttribute(Action.APPLICATION_KEY); if (appConfig == null) {
-- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>