Skip to content

Commit

Permalink
Rollback of commit dc0fbb4.
Browse files Browse the repository at this point in the history
*** Reason for rollback ***

Changed the semantics of local .blazerc handling, requiring a Blaze release rollback ([]).

*** Original change description ***


Make specific options win over common ones

When specifying which command names to parse options for, given the
command annotation, ensure that "common" comes first, so that it can
be overridden by more specific options.

--
MOS_MIGRATED_REVID=119227260
  • Loading branch information
jhfield authored and lberki committed Apr 7, 2016
1 parent eb48421 commit 417dad0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 247 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ private static List<String> getCommandNamesToParse(Command commandAnnotation) {
List<String> result = new ArrayList<>();
getCommandNamesToParseHelper(commandAnnotation, result);
result.add("common");
result = Lists.reverse(result);
// TODO(bazel-team): This statement is a NO-OP: Lists.reverse(result);
return result;
}

Expand Down

This file was deleted.

0 comments on commit 417dad0

Please sign in to comment.