Skip to content

Commit

Permalink
make parameter @nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
xzel23 committed Aug 23, 2023
1 parent 3881ad9 commit 6d63d3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public enum StandardFontMapper implements Function<String, String> {
*/
IGNORE_SUBSETS_AND_KNOWN_ALIASES(StandardFontMapper::removeSubsetTagAndReplaceKnownAliases);

private static String removeSubsetTagAndReplaceKnownAliases(String s) {
private static String removeSubsetTagAndReplaceKnownAliases(@Nullable String s) {
return replaceKnownAliases(removeSubsetTag(s));
}

Expand Down

0 comments on commit 6d63d3c

Please sign in to comment.