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

Commit 2e60b4f6 authored by Vadym Omelnytskyi's avatar Vadym Omelnytskyi
Browse files

Rename RawSettingsTelemetryUtil class

Renamed the RawSettingsTelemetryUtil class to the RawSettingsTelemetryUtils class to comply with the Utils naming convention.

Test: previz 10080
Bug: 339667489
Flag: NONE renaming class
Change-Id: If2040ad47ccc02b316048f942dbfcf72257797f8
parent 8cbd1f48
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -29,9 +29,9 @@ import com.android.internal.display.RefreshRateSettingsUtils;
 * is acceptable for telemetry system.
 * For instance, raw setting values could be hard to visualize on dashboards, etc.
 */
public final class RawSettingsTelemetryUtil {
public final class RawSettingsTelemetryUtils {

    private static final String TAG = "SettingsTelemetryUtil";
    private static final String TAG = "SettingsTelemetryUtils";

    /**
     * Get string that should be written as a value of settingKey and should be sent to telemetry
+2 −2
Original line number Diff line number Diff line
@@ -107,8 +107,8 @@ final class SettingsStatsUtil {
            }
            for (String key : proto.element) {
                final String value = Settings.System.getStringForUser(resolver, key, userId);
                final String telemetryValue =
                        RawSettingsTelemetryUtil.getTelemetrySettingFromRawVal(context, key, value);
                final String telemetryValue = RawSettingsTelemetryUtils
                        .getTelemetrySettingFromRawVal(context, key, value);
                output.add(createStatsEvent(atomTag, key, telemetryValue, userId,
                        flagsData.mDataType));
            }