Merge "Rename getters and setters android.compat.Compatibility.ChangeConfig" am: 0a632252af
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1691046 Change-Id: I42a650712610c645a69a0f27cdc3542903f9dc6a
This commit is contained in:
@@ -39,14 +39,14 @@ public final class CompatibilityChangeConfig implements Parcelable {
|
||||
* Changes forced to be enabled.
|
||||
*/
|
||||
public Set<Long> enabledChanges() {
|
||||
return mChangeConfig.forceEnabledSet();
|
||||
return mChangeConfig.getEnabledSet();
|
||||
}
|
||||
|
||||
/**
|
||||
* Changes forced to be disabled.
|
||||
*/
|
||||
public Set<Long> disabledChanges() {
|
||||
return mChangeConfig.forceDisabledSet();
|
||||
return mChangeConfig.getDisabledSet();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -84,8 +84,8 @@ public final class CompatibilityChangeConfig implements Parcelable {
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags) {
|
||||
long[] enabled = mChangeConfig.forceEnabledChangesArray();
|
||||
long[] disabled = mChangeConfig.forceDisabledChangesArray();
|
||||
long[] enabled = mChangeConfig.getEnabledChangesArray();
|
||||
long[] disabled = mChangeConfig.getDisabledChangesArray();
|
||||
|
||||
dest.writeLongArray(enabled);
|
||||
dest.writeLongArray(disabled);
|
||||
|
||||
Reference in New Issue
Block a user