Skip to content

Commit

Permalink
feat: update from arraylist to list
Browse files Browse the repository at this point in the history
  • Loading branch information
ebk45 committed Aug 31, 2023
1 parent ac30f8d commit be02e2c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.spotify.github.GithubStyle;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;
import org.immutables.value.Value;
Expand Down Expand Up @@ -68,13 +68,13 @@ public interface TeamCreate {
* List GitHub IDs for organization members who will
* become team maintainers.
*/
Optional<ArrayList<String>> maintainers();
Optional<List<String>> maintainers();

/** The full name (e.g., "organization-name/repository-name")
* of repositories to add the team to.
*/
@SuppressWarnings("checkstyle:methodname")
Optional<ArrayList<String>> repo_names();
Optional<List<String>> repo_names();

/** The ID of a team to set as the parent team. */
@SuppressWarnings("checkstyle:methodname")
Expand Down

0 comments on commit be02e2c

Please sign in to comment.