diff options
| author | 2017-04-20 12:52:39 +0000 | |
|---|---|---|
| committer | 2017-04-20 12:52:43 +0000 | |
| commit | 1ef45a8bedc4f0212dfd47082d52ea58f513086c (patch) | |
| tree | 35c7f951722185291dd5c5bfd3ded649df80a178 | |
| parent | 017f5df1e7b47acde9d922eccae6b9894f95fd3e (diff) | |
| parent | 7fea2e264e2e793586bb999ee80897d488e62141 (diff) | |
Merge "Api Council: hide FontsContract.Columns constructor" into oc-dev
| -rw-r--r-- | api/current.txt | 1 | ||||
| -rw-r--r-- | api/system-current.txt | 1 | ||||
| -rw-r--r-- | api/test-current.txt | 1 | ||||
| -rw-r--r-- | core/java/android/provider/FontsContract.java | 4 |
4 files changed, 4 insertions, 3 deletions
diff --git a/api/current.txt b/api/current.txt index 391161660719..a14befc70645 100644 --- a/api/current.txt +++ b/api/current.txt @@ -34501,7 +34501,6 @@ package android.provider { } public static final class FontsContract.Columns implements android.provider.BaseColumns { - ctor public FontsContract.Columns(); field public static final java.lang.String FILE_ID = "file_id"; field public static final java.lang.String ITALIC = "font_italic"; field public static final java.lang.String RESULT_CODE = "result_code"; diff --git a/api/system-current.txt b/api/system-current.txt index 331aa94afa89..7e4ed868b595 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -37488,7 +37488,6 @@ package android.provider { } public static final class FontsContract.Columns implements android.provider.BaseColumns { - ctor public FontsContract.Columns(); field public static final java.lang.String FILE_ID = "file_id"; field public static final java.lang.String ITALIC = "font_italic"; field public static final java.lang.String RESULT_CODE = "result_code"; diff --git a/api/test-current.txt b/api/test-current.txt index 6c1231b93b24..7298a9f2f686 100644 --- a/api/test-current.txt +++ b/api/test-current.txt @@ -34636,7 +34636,6 @@ package android.provider { } public static final class FontsContract.Columns implements android.provider.BaseColumns { - ctor public FontsContract.Columns(); field public static final java.lang.String FILE_ID = "file_id"; field public static final java.lang.String ITALIC = "font_italic"; field public static final java.lang.String RESULT_CODE = "result_code"; diff --git a/core/java/android/provider/FontsContract.java b/core/java/android/provider/FontsContract.java index e9ef770212c8..2c6f7fc4e36b 100644 --- a/core/java/android/provider/FontsContract.java +++ b/core/java/android/provider/FontsContract.java @@ -78,6 +78,10 @@ public class FontsContract { * client application. */ public static final class Columns implements BaseColumns { + + // Do not instantiate. + private Columns() {} + /** * Constant used to request data from a font provider. The cursor returned from the query * may populate this column with a long for the font file ID. The client will request a file |