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:
@@ -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();
|
||||
|
||||
@@ -241,7 +241,7 @@ public final class PrintAttributes implements Parcelable {
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
/** hide */
|
||||
/** @hide */
|
||||
public void clear() {
|
||||
mMediaSize = null;
|
||||
mResolution = null;
|
||||
|
||||
Reference in New Issue
Block a user