Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
linliu-code committed Oct 18, 2024
1 parent 4e98717 commit d510d12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public void addMetadata(String key, String value) {
}

public Option<Object> getMetaDataInfo(String key) {
if (metaData!= null && metaData.isPresent()) {
if (metaData != null && metaData.isPresent()) {
return Option.ofNullable(metaData.get().getOrDefault(key, null));
}
return Option.empty();
Expand Down

0 comments on commit d510d12

Please sign in to comment.