diff options
| author | Andreas Gampe <agampe@google.com> | 2016-05-10 12:51:45 -0700 |
|---|---|---|
| committer | Andreas Gampe <agampe@google.com> | 2016-05-10 12:52:53 -0700 |
| commit | eff06393458f3bb79826f7813041b99abe13f3ca (patch) | |
| tree | 262e312337cc02b55e40ad8ef3829c068dfcd5fb /core/java/android | |
| parent | 4691e24d0b0f0cd0c9728d9e937513ebbe98a1f3 (diff) | |
Frameworks/base: Shorten system property
Otherwise it's too long.
Bug: 26877591
Change-Id: I741186a9fbea6ee50df6cef58d528ec58662c772
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/app/ActivityThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index 938339410416..4039d75bf459 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -557,7 +557,7 @@ public final class ActivityThread { return; } try { - int bufferSize = SystemProperties.getInt("debug.traceview-buffer-size-in-mb", 8); + int bufferSize = SystemProperties.getInt("debug.traceview-buffer-size-mb", 8); VMDebug.startMethodTracing(profileFile, profileFd.getFileDescriptor(), bufferSize * 1024 * 1024, 0, samplingInterval != 0, samplingInterval); profiling = true; |
