refactor: remove obsolete ViewHelper.setBackground method (#137)

This commit is contained in:
Manol Donev
2018-09-05 17:36:16 +03:00
committed by GitHub
parent 0973992350
commit 6211db3d1c

View File

@@ -528,13 +528,5 @@ public class ViewHelper {
textView.setLetterSpacing(value); textView.setLetterSpacing(value);
} }
} }
public static void setBackground(android.view.View view, android.graphics.drawable.Drawable background) {
if (version >= 16) {
view.setBackground(background);
} else {
view.setBackgroundDrawable(background);
}
}
} }