mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
codacy: This statement should have braces
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
73aea003ec
commit
cd1469317d
1 changed files with 3 additions and 1 deletions
|
@ -421,7 +421,9 @@ public final class ThemeUtils {
|
|||
}
|
||||
|
||||
public static void themeDialogActionButton(MaterialButton button) {
|
||||
if (button == null ) return;
|
||||
if (button == null ) {
|
||||
return;
|
||||
}
|
||||
|
||||
Context context = button.getContext();
|
||||
int accentColor = ThemeUtils.primaryAccentColor(button.getContext());
|
||||
|
|
Loading…
Reference in a new issue