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

Commit 13350df5 authored by Nicholas Lativy's avatar Nicholas Lativy
Browse files

Fix code example which was calling wrong super method.

Bug: 22653147
Change-Id: Icebc24cace8accd85e8225bc3490f05f4d854ef5
parent 206edaf1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ public class MainActivity extends Activity implements

    @Override
    protected void onResume() {
        super.onStart();
        super.onResume();
        mGoogleApiClient.connect();
    }