Skip to content

Commit 335c4e6

Browse files
author
Gilles Debunne
committed
Broken build. New methods made private.
Change-Id: Ia123ab4ddb1fe93bcd053c3ea5bf6b87c7204640
1 parent 58d8953 commit 335c4e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/java/android/widget/TextView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9383,7 +9383,7 @@ public void onScrollChanged() {
93839383
}
93849384
}
93859385

9386-
public boolean isPositionVisible(int positionX, int positionY) {
9386+
private boolean isPositionVisible(int positionX, int positionY) {
93879387
synchronized (sTmpPosition) {
93889388
final float[] position = sTmpPosition;
93899389
position[0] = positionX;
@@ -9423,7 +9423,7 @@ public boolean isPositionVisible(int positionX, int positionY) {
94239423
return true;
94249424
}
94259425

9426-
public boolean isOffsetVisible(int offset) {
9426+
private boolean isOffsetVisible(int offset) {
94279427
final int line = mLayout.getLineForOffset(offset);
94289428
final int lineBottom = mLayout.getLineBottom(line);
94299429
final int primaryHorizontal = (int) mLayout.getPrimaryHorizontal(offset);

0 commit comments

Comments
 (0)