mirror of
https://github.com/google/nomulus
synced 2026-09-19 14:34:18 +00:00
Remove unnecessary explicit generic type declarations
They can be inferred correctly even in Java 7, and display as compiler warnings in IntelliJ. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=173451087
This commit is contained in:
@@ -83,8 +83,7 @@ public class CloudDnsWriter extends BaseDnsWriter {
|
||||
private final String projectId;
|
||||
private final String zoneName;
|
||||
private final Dns dnsConnection;
|
||||
private final HashMap<String, ImmutableSet<ResourceRecordSet>> desiredRecords =
|
||||
new HashMap<String, ImmutableSet<ResourceRecordSet>>();
|
||||
private final HashMap<String, ImmutableSet<ResourceRecordSet>> desiredRecords = new HashMap<>();
|
||||
|
||||
@Inject
|
||||
CloudDnsWriter(
|
||||
|
||||
Reference in New Issue
Block a user