in library/src/main/java/com/facebook/fbui/textlayoutbuilder/TextLayoutBuilder.java [578:585]
public TextLayoutBuilder setTypeface(@Nullable Typeface typeface) {
if (mParams.paint.getTypeface() != typeface) {
mParams.createNewPaintIfNeeded();
mParams.paint.setTypeface(typeface);
mSavedLayout = null;
}
return this;
}