summaryrefslogtreecommitdiff
path: root/android/support/v7/widget/TintTypedArray.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/support/v7/widget/TintTypedArray.java')
-rw-r--r--android/support/v7/widget/TintTypedArray.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/android/support/v7/widget/TintTypedArray.java b/android/support/v7/widget/TintTypedArray.java
index 384c4615..22709551 100644
--- a/android/support/v7/widget/TintTypedArray.java
+++ b/android/support/v7/widget/TintTypedArray.java
@@ -106,8 +106,7 @@ public class TintTypedArray {
* not a font resource.
*/
@Nullable
- public Typeface getFont(@StyleableRes int index, int style,
- @Nullable ResourcesCompat.FontCallback fontCallback) {
+ public Typeface getFont(@StyleableRes int index, int style) {
final int resourceId = mWrapped.getResourceId(index, 0);
if (resourceId == 0) {
return null;
@@ -115,7 +114,7 @@ public class TintTypedArray {
if (mTypedValue == null) {
mTypedValue = new TypedValue();
}
- return ResourcesCompat.getFont(mContext, resourceId, mTypedValue, style, fontCallback);
+ return ResourcesCompat.getFont(mContext, resourceId, mTypedValue, style);
}
public int length() {