|
|
|
|
@ -19,7 +19,7 @@ package org.springframework.boot.context.properties.bind;
@@ -19,7 +19,7 @@ package org.springframework.boot.context.properties.bind;
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Collections; |
|
|
|
|
import java.util.EnumSet; |
|
|
|
|
import java.util.HashSet; |
|
|
|
|
import java.util.LinkedHashSet; |
|
|
|
|
import java.util.LinkedList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Set; |
|
|
|
|
@ -439,7 +439,7 @@ public class CollectionBinderTests {
@@ -439,7 +439,7 @@ public class CollectionBinderTests {
|
|
|
|
|
|
|
|
|
|
private List<String> items = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
private Set<String> itemsSet = new HashSet<>(); |
|
|
|
|
private Set<String> itemsSet = new LinkedHashSet<>(); |
|
|
|
|
|
|
|
|
|
public List<String> getItems() { |
|
|
|
|
return this.items; |
|
|
|
|
|