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

Commit 416618a5 authored by Charles Munger's avatar Charles Munger Committed by android-build-merger
Browse files

Merge "Deprecate TimingLogger"

am: aec0ab99

Change-Id: Ie6709d7e83ee68d491eac481635bcba3d44efe1e
parents 8292d735 aec0ab99
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -48530,12 +48530,12 @@ package android.util {
    method @Nullable public static java.util.List<java.lang.String> getTimeZoneIdsForCountryCode(@NonNull String);
  }
  public class TimingLogger {
    ctor public TimingLogger(String, String);
    method public void addSplit(String);
    method public void dumpToLog();
    method public void reset(String, String);
    method public void reset();
  @Deprecated public class TimingLogger {
    ctor @Deprecated public TimingLogger(String, String);
    method @Deprecated public void addSplit(String);
    method @Deprecated public void dumpToLog();
    method @Deprecated public void reset(String, String);
    method @Deprecated public void reset();
  }
  public class TypedValue {
+7 −0
Original line number Diff line number Diff line
@@ -44,7 +44,14 @@ import android.os.SystemClock;
 *     D/TAG     ( 3459): methodA:      6 ms, work C
 *     D/TAG     ( 3459): methodA: end, 16 ms
 * </pre>
 *
 * @deprecated Use {@link android.os.Trace}, or
 *   <a href="https://developer.android.com/studio/profile/benchmark">Android Studio</a>. In
 *   general, milliseconds is the wrong granularity for method-level tracing. Rounding errors
 *   can overemphasize cheap operations, or underemphasize repeated operations. This timing
 *   system also does not take CPU scheduling or frequency into account.
 */
@Deprecated
public class TimingLogger {

    /**