Hiding a method that was never meant to be public.

The hide javadoc annotation had a type, thus leaking the API.

bug:10552358

Change-Id: Iec4e203d0786efbe6afbd9b6995f11642935336c
This commit is contained in:
Svetoslav
2013-09-18 14:38:26 -07:00
parent f95c9aa7e1
commit 81d4014c59
2 changed files with 1 additions and 4 deletions

View File

@@ -19114,7 +19114,6 @@ package android.print {
}
public final class PrintAttributes implements android.os.Parcelable {
method public void clear();
method public int describeContents();
method public int getColorMode();
method public android.print.PrintAttributes.MediaSize getMediaSize();
@@ -31650,8 +31649,6 @@ package android.widget {
ctor public NumberPicker(android.content.Context);
ctor public NumberPicker(android.content.Context, android.util.AttributeSet);
ctor public NumberPicker(android.content.Context, android.util.AttributeSet, int);
method public int computeVerticalScrollOffset();
method public int computeVerticalScrollRange();
method public java.lang.String[] getDisplayedValues();
method public int getMaxValue();
method public int getMinValue();

View File

@@ -241,7 +241,7 @@ public final class PrintAttributes implements Parcelable {
return builder.toString();
}
/** hide */
/** @hide */
public void clear() {
mMediaSize = null;
mResolution = null;