Skip to content

Commit

Permalink
fix(jans-fido2): use diamond operator (#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
ossdhaval authored Feb 4, 2022
1 parent cf993bf commit 5950a26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public enum DeviceRegistrationStatus implements AttributeEnum {
private final String value;
private final String displayName;

private static Map<String, DeviceRegistrationStatus> mapByValues = new HashMap<String, DeviceRegistrationStatus>();
private static Map<String, DeviceRegistrationStatus> mapByValues = new HashMap<>();

static {
for (DeviceRegistrationStatus enumType : values()) {
Expand Down

0 comments on commit 5950a26

Please sign in to comment.