Browse Source

Fix test failure

pull/655/head
Rossen Stoyanchev 12 years ago
parent
commit
909156e1b6
  1. 2
      spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/ViewResolverRegistry.java

2
spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/ViewResolverRegistry.java

@ -280,7 +280,7 @@ public class ViewResolverRegistry { @@ -280,7 +280,7 @@ public class ViewResolverRegistry {
protected int getOrder() {
return this.order;
return (this.order != null ? this.order : Ordered.LOWEST_PRECEDENCE);
}
protected List<ViewResolver> getViewResolvers() {

Loading…
Cancel
Save