Replaces a Collections.emptyList() or Collections.singletonList() call with a call to Arrays.asList().

When the project or module uses the language level 9:

When the project or module uses the Guava library and the language level is 9 or lower, the intention replaces a Collections.emptyList() or Collections.singletonList() call with com.google.common.collect.ImmutableList, com.google.common.collect.ImmutableSet, or com.google.common.collect.ImmutableMap respectively.