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

Commit 279a5504 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am 227292eb: Merge "Fix "Clone" call"

* commit '227292eb':
  Fix "Clone" call
parents a5cbfcb7 227292eb
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();
    }