| 3 | import java.util.*; |
| 4 | |
| 5 | public class ArraySet { |
| 6 | |
| 7 | public static void main(String[] args) { |
| 8 | |
| 9 | String[] array = {"a", "b", "c"}; |
| 10 | Set<String> set = new HashSet<>(Arrays.asList(array)); |
| 11 | |
| 12 | System.out.println("Set: " + set); |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected