mirror of
https://github.com/google/nomulus
synced 2026-09-05 23:57:01 +00:00
Always use the constructor to make Immutable Collection Builders
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=135359669
This commit is contained in:
@@ -79,7 +79,7 @@ public abstract class ListObjectsCommandTestCase<C extends ListObjectsCommand>
|
||||
Optional<Boolean> printHeaderRow,
|
||||
Optional<Boolean> fullFieldNames) throws Exception {
|
||||
|
||||
ImmutableMap.Builder<String, Object> params = ImmutableMap.<String, Object>builder();
|
||||
ImmutableMap.Builder<String, Object> params = new ImmutableMap.Builder<>();
|
||||
if (fields != null) {
|
||||
params.put(FIELDS_PARAM, fields);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user