Skip to content

Commit

Permalink
Make the collections private since no one else should use them
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Oct 20, 2023
1 parent 258920b commit afcb0c8
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,9 @@ public class EmailDomainToRorLoader {

private String filePath;
private EmailDomainManager emailDomainManager;
List<List<String>> csvData;

Set<String> invalidDomains = new HashSet<String>();

Map<String, DomainToRorMap> map = new HashMap<String, DomainToRorMap>();

private List<List<String>> csvData;
private Set<String> invalidDomains = new HashSet<String>();
private Map<String, DomainToRorMap> map = new HashMap<String, DomainToRorMap>();
private int updatedEntries = 0;
private int createdEntries = 0;

Expand Down

0 comments on commit afcb0c8

Please sign in to comment.