Java Public Recipes
newList is a new list that has the contents of both list1 and list2.
import com.google.common.collect.ImmutableList;
List newList = ImmutableList.builder().addAll(list1).addAll(list2).build();
newList is a new list that has the contents of both list1 and list2.
import com.google.common.collect.ImmutableList;
List newList = ImmutableList.builder().addAll(list1).addAll(list2).build();