Skip to content

Commit

Permalink
whitespace checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed Apr 29, 2024
1 parent 3550d61 commit 2975e64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private static Parameter getParameter(Components components, String ref) {
}
}

private static <K, V> Map<K,V> emptyIfNull(Map<K, V> map) {
private static <K, V> Map<K, V> emptyIfNull(Map<K, V> map) {
if (map == null) {
return Collections.emptyMap();
} else {
Expand Down

0 comments on commit 2975e64

Please sign in to comment.