Merge "Deprecate android.util.Mutable*."

This commit is contained in:
Treehugger Robot
2018-01-26 00:28:52 +00:00
committed by Gerrit Code Review
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;