summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2012-03-12 16:09:21 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-12 16:09:21 -0700
commit34ba5a0a1667dc45d0590c68a46a2b072239a56f (patch)
tree40b72bb0d964412af66fe40e88a3f5aba515e016 /core
parentfafebf85bddc455c434c3276a9210bfee891bd28 (diff)
parent25ba197fa7f29aed574f7d5e38975c5fda25e2ae (diff)
downloadframeworks_base-34ba5a0a1667dc45d0590c68a46a2b072239a56f.zip
frameworks_base-34ba5a0a1667dc45d0590c68a46a2b072239a56f.tar.gz
frameworks_base-34ba5a0a1667dc45d0590c68a46a2b072239a56f.tar.bz2
Merge "Make public more RTL APIs"
Diffstat (limited to 'core')
-rw-r--r--core/java/android/util/LocaleUtil.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/java/android/util/LocaleUtil.java b/core/java/android/util/LocaleUtil.java
index 9953252..60526e1 100644
--- a/core/java/android/util/LocaleUtil.java
+++ b/core/java/android/util/LocaleUtil.java
@@ -24,7 +24,6 @@ import libcore.icu.ICU;
/**
* Various utilities for Locales
*
- * @hide
*/
public class LocaleUtil {
@@ -41,9 +40,7 @@ public class LocaleUtil {
* {@link View#LAYOUT_DIRECTION_LTR} or
* {@link View#LAYOUT_DIRECTION_RTL}.
*
- * Be careful: this code will need to be changed when vertical scripts will be supported
- *
- * @hide
+ * Be careful: this code will need to be updated when vertical scripts will be supported
*/
public static int getLayoutDirectionFromLocale(Locale locale) {
if (locale != null && !locale.equals(Locale.ROOT)) {
@@ -69,7 +66,7 @@ public class LocaleUtil {
* {@link View#LAYOUT_DIRECTION_LTR} or
* {@link View#LAYOUT_DIRECTION_RTL}.
*
- * Be careful: this code will need to be changed when vertical scripts will be supported
+ * Be careful: this code will need to be updated when vertical scripts will be supported
*
* @hide
*/