Skip to content

Commit

Permalink
Polish previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
olegz committed Oct 17, 2024
1 parent b30b2c8 commit 003e560
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ private static Message<?> buildBinaryMessageFromStructuredMap(Map<String, Object

private static URI safeGetURI(Map<String, Object> map, String key) {
Object uri = map.get(key);
if (uri != null && uri instanceof String) {
if (uri != null) {
if (uri instanceof String) {
uri = URI.create((String) uri);
}
Expand Down

0 comments on commit 003e560

Please sign in to comment.