Skip to content

Commit

Permalink
Chore: explicit type can be replaced with <> (#500)
Browse files Browse the repository at this point in the history
* Chore: explicit type can be replaced with <>

* Chore: explicit type can be replaced with <>
  • Loading branch information
dbmalkovsky authored Nov 7, 2024
1 parent e7da5dd commit a951404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/isf/security/TokenProviderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ void testGetAuthenticationByUsername() throws OHServiceException, OHException {
user.setPasswd("password");

// Mock permissions with same values used in the helper
List<Permission> permissions = new ArrayList<Permission>();
List<Permission> permissions = new ArrayList<>();
Permission permission = new Permission();
permission.setName("ROLE_USER");
permissions.add(permission);
Expand Down

0 comments on commit a951404

Please sign in to comment.