Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 400710928
  • Loading branch information
Googler authored and Copybara-Service committed Oct 4, 2021
1 parent 69b4362 commit d250a23
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,7 @@ private static String compilationModeFlag(CompilationMode mode) {
protected static ImmutableList<String> compilationModeCopts(CompilationMode mode) {
switch (mode) {
case DBG:
return ImmutableList.<String>builder()
.addAll(ObjcConfiguration.DBG_COPTS)
.build();
return ImmutableList.copyOf(ObjcConfiguration.DBG_COPTS);
case OPT:
return ObjcConfiguration.OPT_COPTS;
case FASTBUILD:
Expand Down

0 comments on commit d250a23

Please sign in to comment.