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

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-10-06 16:55:38 +02:00
parent 0a70567452
commit 9bd51ce21b
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

View File

@ -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);