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

Commit f4b51c60 authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Fixing StatsLogger not getting activityContext" into main

parents ee77e848 a5438a3c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1205,7 +1205,7 @@ public class StatsLogManager implements ResourceBasedOverride {
     * Creates a new instance of {@link StatsLogManager} based on provided context.
     */
    public static StatsLogManager newInstance(Context context) {
        return Overrides.getObject(StatsLogManager.class,
                context.getApplicationContext(), R.string.stats_log_manager_class);
        return Overrides.getObject(
                StatsLogManager.class, context, R.string.stats_log_manager_class);
    }
}