Browse Source

PMD: An empty statement (semicolon) not part of a loop

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 2 years ago
parent
commit
9bd51ce21b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/src/main/java/com/nextcloud/talk/utils/DisplayUtils.java

+ 1 - 1
app/src/main/java/com/nextcloud/talk/utils/DisplayUtils.java

@@ -283,7 +283,7 @@ public class DisplayUtils {
 
     public static Drawable getTintedDrawable(Resources res, @DrawableRes int drawableResId, @ColorRes int colorResId) {
         Drawable drawable = ResourcesCompat.getDrawable(res, drawableResId, null);
-        ;
+
         int color = res.getColor(colorResId);
         if (drawable != null) {
             drawable.setTint(color);