summaryrefslogtreecommitdiffstats
path: root/v4/jellybean-mr1
diff options
context:
space:
mode:
authorChris Banes <chrisbanes@google.com>2015-10-19 11:02:33 +0100
committerChris Banes <chrisbanes@google.com>2015-10-19 13:57:03 +0100
commit95ad49b720f4990d39d05f7e46a5c7bc83afc9d6 (patch)
tree5673762b3affbd22da51c577fcf90f1e77ad7649 /v4/jellybean-mr1
parent9ec922c215ed95a4bbd8bd7940e81dcfe6926893 (diff)
downloadandroid_frameworks_support-95ad49b720f4990d39d05f7e46a5c7bc83afc9d6.tar.gz
android_frameworks_support-95ad49b720f4990d39d05f7e46a5c7bc83afc9d6.tar.bz2
android_frameworks_support-95ad49b720f4990d39d05f7e46a5c7bc83afc9d6.zip
Fix multi source folder API checking
For libraries which have seperate source folders per API level, the API generation doesn't currently work correctly. When generating the stubs, we need to input all source files, not just the final module. This has uncovered some file in support-v4 which should not be public API. BUG: 20822048 Change-Id: I6216b9688e745db212959a07fcdc21bdd0aa5ab2
Diffstat (limited to 'v4/jellybean-mr1')
-rw-r--r--v4/jellybean-mr1/android/support/v4/text/TextUtilsCompatJellybeanMr1.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/v4/jellybean-mr1/android/support/v4/text/TextUtilsCompatJellybeanMr1.java b/v4/jellybean-mr1/android/support/v4/text/TextUtilsCompatJellybeanMr1.java
index fcdf8b5675..d5b675b4d6 100644
--- a/v4/jellybean-mr1/android/support/v4/text/TextUtilsCompatJellybeanMr1.java
+++ b/v4/jellybean-mr1/android/support/v4/text/TextUtilsCompatJellybeanMr1.java
@@ -25,7 +25,7 @@ import java.util.Locale;
/**
* Jellybean MR1 - specific TextUtils API access.
*/
-public class TextUtilsCompatJellybeanMr1 {
+class TextUtilsCompatJellybeanMr1 {
@NonNull
public static String htmlEncode(@NonNull String s) {
return TextUtils.htmlEncode(s);