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

Commit 227292eb authored by Nick Kralevich's avatar Nick Kralevich Committed by Android (Google) Code Review
Browse files

Merge "Fix "Clone" call"

parents 9b5206e5 910ad640
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -94,7 +94,8 @@ class AdapterProperties {
            mBondedDevices.clear();
    }

    public Object Clone() throws CloneNotSupportedException {
    @Override
    public Object clone() throws CloneNotSupportedException {
        throw new CloneNotSupportedException();
    }

+2 −1
Original line number Diff line number Diff line
@@ -40,7 +40,8 @@ final class JniCallbacks {
        mBondStateMachine = null;
    }

    public Object Clone() throws CloneNotSupportedException {
    @Override
    public Object clone() throws CloneNotSupportedException {
        throw new CloneNotSupportedException();
    }

+2 −1
Original line number Diff line number Diff line
@@ -77,7 +77,8 @@ final class RemoteDevices {
            mDevices.clear();
    }

    public Object Clone() throws CloneNotSupportedException {
    @Override
    public Object clone() throws CloneNotSupportedException {
        throw new CloneNotSupportedException();
    }