Skip to content

Commit

Permalink
Call constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
akang31 committed Apr 16, 2024
1 parent 50ea382 commit 25cb4e5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ public class PropertiesInstrumentationData {
private final Map<String, String> scopes;

public PropertiesInstrumentationData(Map<String, PropertyUsageData> idToUsageDataMap) {
this.idToUsageDataMap = idToUsageDataMap;
scopes = new HashMap<>();
this(idToUsageDataMap, new HashMap<>());
}

public PropertiesInstrumentationData(Map<String, PropertyUsageData> idToUsageDataMap, Map<String, String> scopes) {
Expand Down

0 comments on commit 25cb4e5

Please sign in to comment.