diff options
| author | 2020-06-02 16:55:54 +0100 | |
|---|---|---|
| committer | 2020-06-02 17:58:08 +0100 | |
| commit | 1835fdc3dbee497e295ddc36e00af8cc091dfd8a (patch) | |
| tree | 613acdcc541bf14f1ba837eaaa83ceb9b86be65e | |
| parent | d7d84c0b7bbe4501e9aeba451b6f3c2694dbccf3 (diff) | |
Remove IoUtils from service-permission system-server stubs
As this did not have @hide this was being treated as if it was part of
the public API and so while it was not being tracked in a .txt file
because only the system-server API was being generated it was being
included in the system-server stubs as metalava will include public API
stubs in the stubs for every API surface.
Adding @hide ensures that it is no longer exported as part of the
service-permission stubs.
Bug: 155164730
Test: m service-permission-stubs and verify that it does not include IoUtils
Change-Id: I1ffa284c1f692397b52bdd6b3750b13125887352
| -rw-r--r-- | apex/permission/service/java/com/android/permission/persistence/IoUtils.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apex/permission/service/java/com/android/permission/persistence/IoUtils.java b/apex/permission/service/java/com/android/permission/persistence/IoUtils.java index 0ae44603516e..569a78c0ab41 100644 --- a/apex/permission/service/java/com/android/permission/persistence/IoUtils.java +++ b/apex/permission/service/java/com/android/permission/persistence/IoUtils.java @@ -20,6 +20,8 @@ import android.annotation.NonNull; /** * Utility class for IO. + * + * @hide */ public class IoUtils { |