Skip to content

Commit

Permalink
Correct a typo in ImmutableBiMapTest.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=187268361
  • Loading branch information
lowasser authored and ronshapiro committed Feb 28, 2018
1 parent 45b0489 commit ea66419
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ enum ConstructionPathway {
ImmutableBiMap<?, ?> create(List<? extends Entry<?, ?>> entries, CallsCounter counter) {
ImmutableBiMap.Builder<Object, Object> builder = ImmutableBiMap.builder();
for (Entry<?, ?> entry : entries) {
builder.put(entry);
builder.put(entry.getKey(), entry.getValue());
}
return builder.build();
}
Expand Down

0 comments on commit ea66419

Please sign in to comment.