Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumBadger committed Feb 14, 2023
1 parent 3b49e59 commit 1ea6acd
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,10 @@ private void buildCommentTree(
if (comment.getMedia_metadata() != null && comment.getBody_html() != null) {
try {

for(final Map.Entry<UrlEncodedString, MaybeParseError<RedditComment.EmoteMetadata>> entry
: comment.getMedia_metadata().entrySet()) {
for(final Map.Entry<
UrlEncodedString,
MaybeParseError<RedditComment.EmoteMetadata>
> entry : comment.getMedia_metadata().entrySet()) {

if(!(entry.getValue() instanceof MaybeParseError.Ok)) {
continue;
Expand Down

0 comments on commit 1ea6acd

Please sign in to comment.