Explorar el Código

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

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger hace 2 años
padre
commit
9bd51ce21b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);