summaryrefslogtreecommitdiff
path: root/android/support/v4/content/res/ResourcesCompat.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/support/v4/content/res/ResourcesCompat.java')
-rw-r--r--android/support/v4/content/res/ResourcesCompat.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/support/v4/content/res/ResourcesCompat.java b/android/support/v4/content/res/ResourcesCompat.java
index 4c70ce93..15b8ce9a 100644
--- a/android/support/v4/content/res/ResourcesCompat.java
+++ b/android/support/v4/content/res/ResourcesCompat.java
@@ -307,11 +307,11 @@ public final class ResourcesCompat {
*/
@RestrictTo(LIBRARY_GROUP)
public static Typeface getFont(@NonNull Context context, @FontRes int id, TypedValue value,
- int style) throws NotFoundException {
+ int style, @Nullable FontCallback fontCallback) throws NotFoundException {
if (context.isRestricted()) {
return null;
}
- return loadFont(context, id, value, style, null /* callback */, null /* handler */,
+ return loadFont(context, id, value, style, fontCallback, null /* handler */,
true /* isXmlRequest */);
}