Skip to content

Commit

Permalink
Make ResourceType final
Browse files Browse the repository at this point in the history
  • Loading branch information
hugithordarson committed Feb 3, 2024
1 parent fcd43f1 commit 20745c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private static void addResourceSource( ResourceType type, ResourceSource source
/**
* @return The named resource if it exists, an empty optional if not found
*/
private static Optional<byte[]> readResource( ResourceType type, final String resourcePath ) {
private static Optional<byte[]> readResource( final ResourceType type, final String resourcePath ) {
Objects.requireNonNull( type );
Objects.requireNonNull( resourcePath );

Expand Down

0 comments on commit 20745c4

Please sign in to comment.