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

Commit 118f04bd authored by Nick Kralevich's avatar Nick Kralevich
Browse files

Fix "Clone" override

The function should be named "clone", not "Clone".

Also add @Override so that this error can be detected at
compile time.

Change-Id: I976723978a5e3eafbfbc599bac95b8646d18d5ca
parent 3860c528
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -116,7 +116,8 @@ public class ProxyDataTracker extends BaseNetworkStateTracker {
        }
    }

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