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

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

Merge "Fix "Clone" call"

parents 20e28abb 3a91ac3e
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();
    }