Skip to content

Commit

Permalink
Fix breakage caused by f6d7c53
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=212579964
  • Loading branch information
cushon authored and ronshapiro committed Sep 12, 2018
1 parent 958c0df commit f9c9e41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void handleFix(Fix fix) {
importsToRemove.addAll(fix.getImportsToRemove());
for (Replacement replacement : fix.getReplacements(endPositions)) {
try {
replacements.add(replacement);
replacements.add(replacement, Replacements.CoalescePolicy.EXISTING_FIRST);
} catch (IllegalArgumentException iae) {
if (!ignoreOverlappingFixes) {
throw iae;
Expand Down

0 comments on commit f9c9e41

Please sign in to comment.