Minor fix to name of attribute used to store FlashMap instances.

This commit is contained in:
Rossen Stoyanchev
2011-10-17 21:30:09 +00:00
parent 5d42a6242f
commit 313ba395af
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ import org.springframework.web.util.UrlPathHelper;
*/
public class DefaultFlashMapManager implements FlashMapManager {
private static final String FLASH_MAPS_SESSION_ATTRIBUTE = DefaultFlashMapManager.class + ".FLASH_MAPS";
private static final String FLASH_MAPS_SESSION_ATTRIBUTE = DefaultFlashMapManager.class.getName() + ".FLASH_MAPS";
private static final Log logger = LogFactory.getLog(DefaultFlashMapManager.class);