Skip to content

Commit

Permalink
Fix SecurityLevel constants. (oblador#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
cknitt authored and mandrigin committed May 3, 2019
1 parent a6f269a commit 996e428
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Map<String, Object> getConstants() {
final Map<String, Object> constants = new HashMap<>();
constants.put(SecurityLevel.ANY.jsName(), SecurityLevel.ANY.name());
constants.put(SecurityLevel.SECURE_SOFTWARE.jsName(), SecurityLevel.SECURE_SOFTWARE.name());
constants.put(SecurityLevel.SECURE_HARDWARE.jsName(), SecurityLevel.SECURE_SOFTWARE.name());
constants.put(SecurityLevel.SECURE_HARDWARE.jsName(), SecurityLevel.SECURE_HARDWARE.name());
return constants;
}

Expand Down

0 comments on commit 996e428

Please sign in to comment.