diff options
author | Brian Carlstrom <bdc@google.com> | 2013-11-01 14:51:58 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-11-01 14:51:58 -0700 |
commit | 5637ffced9d0b804f43db0915b2d0f39af2835c0 (patch) | |
tree | c84f968145299832ebfc29ef168340f92cd013cb /core/java/com | |
parent | e6411e681018289c58ae6f622c11db7c800de962 (diff) | |
download | frameworks_base-5637ffced9d0b804f43db0915b2d0f39af2835c0.zip frameworks_base-5637ffced9d0b804f43db0915b2d0f39af2835c0.tar.gz frameworks_base-5637ffced9d0b804f43db0915b2d0f39af2835c0.tar.bz2 |
Move set of persist.sys.dalvik.vm.lib to SystemServer only
Bug: 11463182
Bug: 11479647
Change-Id: I38efdecdd65fe3efc9c33b4dc204a64543ae6377
Diffstat (limited to 'core/java/com')
-rw-r--r-- | core/java/com/android/internal/os/RuntimeInit.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/core/java/com/android/internal/os/RuntimeInit.java b/core/java/com/android/internal/os/RuntimeInit.java index 69b593a..5538dca 100644 --- a/core/java/com/android/internal/os/RuntimeInit.java +++ b/core/java/com/android/internal/os/RuntimeInit.java @@ -104,18 +104,6 @@ public class RuntimeInit { Thread.setDefaultUncaughtExceptionHandler(new UncaughtHandler()); /* - * In case the runtime switched since last boot (such as when - * the old runtime was removed in an OTA), set the system - * property so that it is in sync. We can't do this in - * libnativehelper's JniInvocation::Init code where we already - * had to fallback to a different runtime because it is - * running as root and we need to be the system user to set - * the property. http://b/11463182 - */ - SystemProperties.set("persist.sys.dalvik.vm.lib", - VMRuntime.getRuntime().vmLibrary()); - - /* * Install a TimezoneGetter subclass for ZoneInfo.db */ TimezoneGetter.setInstance(new TimezoneGetter() { |