Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0c6ede1 authored by William Escande's avatar William Escande
Browse files

Fix checkstyle in frameworks

All BluetoothCodecConfig error are fixed

Test: checkstyle + build. No functionnal changes
Bug: 244876154
Merged-In: I2f94ffd62ae76c10ae6a835c81335fb0eae5a97f
Change-Id: I2f94ffd62ae76c10ae6a835c81335fb0eae5a97f
parent bd135048
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -413,8 +413,7 @@ public final class BluetoothCodecConfig implements Parcelable {
        return 0;
    }

    public static final @android.annotation.NonNull Parcelable.Creator<BluetoothCodecConfig> CREATOR =
            new Parcelable.Creator<BluetoothCodecConfig>() {
    public static final @NonNull Creator<BluetoothCodecConfig> CREATOR = new Creator<>() {
        public BluetoothCodecConfig createFromParcel(Parcel in) {
            return new BluetoothCodecConfig(in);
        }
@@ -715,6 +714,7 @@ public final class BluetoothCodecConfig implements Parcelable {
                if (mCodecSpecific1 != other.mCodecSpecific1) {
                    return false;
                }
            // fall through
            default:
                return true;
        }