We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c571ee1 commit 000b563Copy full SHA for 000b563
spring-webmvc/src/main/java/org/springframework/web/servlet/view/AbstractView.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2002-2022 the original author or authors.
+ * Copyright 2002-2024 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -495,7 +495,7 @@ public String toString() {
495
}
496
497
protected String formatViewName() {
498
- return (getBeanName() != null ? "name '" + getBeanName() + "'" : "[" + getClass().getSimpleName() + "]");
+ return (getBeanName() != null ? "name [" + getBeanName() + "]" : "[" + getClass().getSimpleName() + "]");
499
500
501
0 commit comments