@ -2709,7 +2709,7 @@ public class AutowiredAnnotationBeanPostProcessorTests {
@@ -2709,7 +2709,7 @@ public class AutowiredAnnotationBeanPostProcessorTests {
@ -2833,7 +2833,7 @@ public class AutowiredAnnotationBeanPostProcessorTests {
@@ -2833,7 +2833,7 @@ public class AutowiredAnnotationBeanPostProcessorTests {
}
publicList<TestBean>iterateTestBeans(){
List<TestBean>resolved=newLinkedList<>();
List<TestBean>resolved=newArrayList<>();
for(TestBeantb:this.testBeanProvider){
resolved.add(tb);
}
@ -2841,7 +2841,7 @@ public class AutowiredAnnotationBeanPostProcessorTests {
@@ -2841,7 +2841,7 @@ public class AutowiredAnnotationBeanPostProcessorTests {
@ -537,7 +537,7 @@ public class ApplicationContextEventTests extends AbstractApplicationEventListen
@@ -537,7 +537,7 @@ public class ApplicationContextEventTests extends AbstractApplicationEventListen
@ -2409,7 +2408,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@@ -2409,7 +2408,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@Override
publicList<TestBean>getTestBeans(){
List<TestBean>list=newLinkedList<>();
List<TestBean>list=newArrayList<>();
list.add(newTestBean("tb1"));
list.add(newTestBean("tb2"));
returnlist;
@ -2436,7 +2435,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@@ -2436,7 +2435,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@Override
@ModelAttribute("testBeanList")
publicList<TestBean>getTestBeans(){
List<TestBean>list=newLinkedList<>();
List<TestBean>list=newArrayList<>();
list.add(newTestBean("tb1"));
list.add(newTestBean("tb2"));
returnlist;
@ -2463,7 +2462,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@@ -2463,7 +2462,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@ModelAttribute("testBeanList")
publicList<TestBean>getTestBeans(){
List<TestBean>list=newLinkedList<>();
List<TestBean>list=newArrayList<>();
list.add(newTestBean("tb1"));
list.add(newTestBean("tb2"));
returnlist;
@ -2500,7 +2499,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@@ -2500,7 +2499,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@ModelAttribute
publicList<TestBean>getTestBeans(){
List<TestBean>list=newLinkedList<>();
List<TestBean>list=newArrayList<>();
list.add(newTestBean("tb1"));
list.add(newTestBean("tb2"));
returnlist;
@ -2521,7 +2520,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@@ -2521,7 +2520,7 @@ public class ServletAnnotationControllerHandlerMethodTests extends AbstractServl
@ -600,7 +599,7 @@ public class SelectTagTests extends AbstractFormTagTests {
@@ -600,7 +599,7 @@ public class SelectTagTests extends AbstractFormTagTests {