Skip to content

Commit

Permalink
Fixing style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumBadger committed Jul 3, 2021
1 parent a815372 commit 86e7060
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ public void onJsonParsed(
null,
null,
null,
Optional.of(result.toString().getBytes(General.CHARSET_UTF8)));
Optional.of(
result.toString().getBytes(General.CHARSET_UTF8)));
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ public void onSharedPreferenceChanged(
@NonNull final SharedPrefsWrapper sharedPreferences,
@NonNull final String key) {

if(mRunnableOnPinnedChange != null && key.equals(mContext.getString(R.string.pref_pinned_subreddits_key))) {
if(mRunnableOnPinnedChange != null
&& key.equals(mContext.getString(R.string.pref_pinned_subreddits_key))) {
mRunnableOnPinnedChange.run();
}
}
Expand Down

0 comments on commit 86e7060

Please sign in to comment.