summaryrefslogtreecommitdiff
path: root/graphics/java/android
diff options
context:
space:
mode:
author Seigo Nonaka <nona@google.com> 2019-03-15 12:45:42 -0700
committer Seigo Nonaka <nona@google.com> 2019-03-18 10:13:27 -0700
commit67e8cb2bfc30c0008cf80a4af8b2aebba49e69a5 (patch)
treecca391e35afb38c6837214a04b61edbd263c264b /graphics/java/android
parent484a77d026a167403734a486aa1b5e0d8a547ca3 (diff)
Hide MeasuredText.getChars
The MeasuredText.getChars is used only from text layout internals: - LineBreaker#computeLineBreaks - Canvas.drawtextRun Thus, no need to be exposed to public. Making it @hide Change-Id: I7c27a4b95d7d5ebc2ad5d74c947cdea3ce08f2ab Fix: 124795470 Test: N/A
Diffstat (limited to 'graphics/java/android')
-rw-r--r--graphics/java/android/graphics/text/MeasuredText.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/java/android/graphics/text/MeasuredText.java b/graphics/java/android/graphics/text/MeasuredText.java
index 66bcd8650b95..9db7533044e2 100644
--- a/graphics/java/android/graphics/text/MeasuredText.java
+++ b/graphics/java/android/graphics/text/MeasuredText.java
@@ -65,6 +65,7 @@ public class MeasuredText {
/**
* Returns the characters in the paragraph used to compute this MeasuredText instance.
+ * @hide
*/
public @NonNull char[] getChars() {
return mChars;