Skip to content

Commit

Permalink
try to revert this changes to ReactTextView
Browse files Browse the repository at this point in the history
  • Loading branch information
fabOnReact committed Mar 2, 2022
1 parent 4368f3a commit c2df8b0
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ public class ReactTextView extends AppCompatTextView implements ReactCompoundVie
private boolean mAdjustsFontSizeToFit = false;
private int mLinkifyMaskType = 0;
private boolean mNotifyOnInlineViewLayout;
public boolean mTextIsSelectable = false;
private boolean mTextIsSelectable = false;

private ReactViewBackgroundManager mReactBackgroundManager;
private Spannable mSpanned;
public AccessibilityLinks mAccessibilityLinks;
private AccessibilityLinks mAccessibilityLinks;

public ReactTextView(Context context) {
super(context);
Expand Down Expand Up @@ -580,14 +580,6 @@ public Spannable getSpanned() {
return mSpanned;
}

/*
public ReactClickableSpan[] getClickableSpans() {
ReactClickableSpan[] clickableSpans =
mSpanned.getSpans(0, getText().length(), ReactClickableSpan.class);
return clickableSpans;
}
*/

public void setLinkifyMask(int mask) {
mLinkifyMaskType = mask;
}
Expand Down

0 comments on commit c2df8b0

Please sign in to comment.