Skip to content

Commit

Permalink
Remove special casing for --incremental-changed and --incremental-unc…
Browse files Browse the repository at this point in the history
…hanged.

RELNOTES: None.
PiperOrigin-RevId: 205646506
  • Loading branch information
lberki authored and Copybara-Service committed Jul 23, 2018
1 parent 258efc4 commit ebdf218
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,6 @@ public static void extractArgumentsForDynamicLinkParamFile(
paramFileArgs.add("--start-lib");
} else if (arg.equals("-Wl,--end-lib")) {
paramFileArgs.add("--end-lib");
} else if (arg.equals("--incremental-unchanged")) {
paramFileArgs.add(arg);
} else if (arg.equals("--incremental-changed")) {
paramFileArgs.add(arg);
} else if (arg.charAt(0) == '-') {
if (arg.startsWith("-l")) {
paramFileArgs.add(arg);
Expand Down

0 comments on commit ebdf218

Please sign in to comment.