am ac8ccc3c: Merge "Hide AssetInputStream.getAssetInt."

* commit 'ac8ccc3c181a27103955b0f7bbf3dddabb0a6305':
  Hide AssetInputStream.getAssetInt.
This commit is contained in:
Narayan Kamath
2014-01-14 01:48:37 -08:00
committed by Android Git Automerger
2 changed files with 3 additions and 1 deletions

View File

@ -7543,7 +7543,6 @@ package android.content.res {
public final class AssetManager.AssetInputStream extends java.io.InputStream {
method public final int available() throws java.io.IOException;
method public final void close() throws java.io.IOException;
method public final int getAssetInt();
method public final void mark(int);
method public final boolean markSupported();
method public final int read() throws java.io.IOException;

View File

@ -537,6 +537,9 @@ public final class AssetManager {
}
public final class AssetInputStream extends InputStream {
/**
* @hide
*/
public final int getAssetInt() {
return mAsset;
}