This method of the PermissionUtils Class copies two arrays of strings into a new list. The strings in list1 are copied first into the new list, followed by the strings in list2.
public static String[] combineArraysOfStrings(String[] list1, String[] list2);
Returns a new list containing copies of the strings in list1, followed by copies of the strings in list2.
list1 | The first list of strings, or null. |
list2 | The second list of strings, or null. |