Merge "Deprecate android.util.Mutable*."

am: 71a9e66d4a

Change-Id: Ib82f53cac275d084851251c44b6860bfb282373d
This commit is contained in:
Tobias Thierer
2018-01-26 02:03:33 +00:00
committed by android-build-merger
9 changed files with 24 additions and 8 deletions

View File

@@ -44374,42 +44374,42 @@ package android.util {
method public void previousMonth();
}
public final class MutableBoolean {
public final deprecated class MutableBoolean {
ctor public MutableBoolean(boolean);
field public boolean value;
}
public final class MutableByte {
public final deprecated class MutableByte {
ctor public MutableByte(byte);
field public byte value;
}
public final class MutableChar {
public final deprecated class MutableChar {
ctor public MutableChar(char);
field public char value;
}
public final class MutableDouble {
public final deprecated class MutableDouble {
ctor public MutableDouble(double);
field public double value;
}
public final class MutableFloat {
public final deprecated class MutableFloat {
ctor public MutableFloat(float);
field public float value;
}
public final class MutableInt {
public final deprecated class MutableInt {
ctor public MutableInt(int);
field public int value;
}
public final class MutableLong {
public final deprecated class MutableLong {
ctor public MutableLong(long);
field public long value;
}
public final class MutableShort {
public final deprecated class MutableShort {
ctor public MutableShort(short);
field public short value;
}

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableBoolean {
public boolean value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableByte {
public byte value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableChar {
public char value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableDouble {
public double value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableFloat {
public float value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableInt {
public int value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableLong {
public long value;

View File

@@ -17,7 +17,9 @@
package android.util;
/**
* @deprecated This class will be removed from a future version of the Android API.
*/
@Deprecated
public final class MutableShort {
public short value;