From 91bca55cbf6e764841ad2abcfd6a1b9690b2e4c0 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 20 Sep 2022 14:27:03 +0200 Subject: [PATCH] Fix broken links to ThemeResolver in Javadoc --- .../web/servlet/support/RequestContext.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/support/RequestContext.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/support/RequestContext.java index 811c01b2c9..3cb369da46 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/support/RequestContext.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/support/RequestContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2019 the original author or authors. + * Copyright 2002-2022 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. @@ -425,9 +425,10 @@ public class RequestContext { /** * Change the current theme to the specified one, - * storing the new theme name through the configured {@link ThemeResolver}. + * storing the new theme name through the configured + * {@link org.springframework.web.servlet.ThemeResolver ThemeResolver}. * @param theme the new theme - * @see ThemeResolver#setThemeName + * @see org.springframework.web.servlet.ThemeResolver#setThemeName * @deprecated as of 6.0, with no direct replacement */ @Deprecated @@ -442,9 +443,10 @@ public class RequestContext { /** * Change the current theme to the specified theme by name, - * storing the new theme name through the configured {@link ThemeResolver}. + * storing the new theme name through the configured + * {@link org.springframework.web.servlet.ThemeResolver ThemeResolver}. * @param themeName the name of the new theme - * @see ThemeResolver#setThemeName + * @see org.springframework.web.servlet.ThemeResolver#setThemeName */ @Deprecated public void changeTheme(String themeName) {