Skip to content

Commit 57e6136

Browse files
Gilles DebunneAndroid (Google) Code Review
authored andcommitted
Merge "Hide TextDirectionHeuristics" into jb-dev
2 parents f27ba97 + cefb4bc commit 57e6136

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

api/current.txt

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21098,19 +21098,6 @@ package android.text {
2109821098
method public int getTopPadding();
2109921099
}
2110021100

21101-
public abstract interface TextDirectionHeuristic {
21102-
}
21103-
21104-
public class TextDirectionHeuristics {
21105-
ctor public TextDirectionHeuristics();
21106-
field public static final android.text.TextDirectionHeuristic ANYRTL_LTR;
21107-
field public static final android.text.TextDirectionHeuristic FIRSTSTRONG_LTR;
21108-
field public static final android.text.TextDirectionHeuristic FIRSTSTRONG_RTL;
21109-
field public static final android.text.TextDirectionHeuristic LOCALE;
21110-
field public static final android.text.TextDirectionHeuristic LTR;
21111-
field public static final android.text.TextDirectionHeuristic RTL;
21112-
}
21113-
2111421101
public class TextPaint extends android.graphics.Paint {
2111521102
ctor public TextPaint();
2111621103
ctor public TextPaint(int);

core/java/android/text/TextDirectionHeuristic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
* @hide
2323
*/
2424
public interface TextDirectionHeuristic {
25-
/** @hide */ boolean isRtl(char[] text, int start, int count);
25+
boolean isRtl(char[] text, int start, int count);
2626
}

core/java/android/text/TextDirectionHeuristics.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222

2323
/**
2424
* Some objects that implement TextDirectionHeuristic.
25+
*
26+
* @hide
2527
*/
2628
public class TextDirectionHeuristics {
2729

0 commit comments

Comments
 (0)