Bug 630595 - Followup. Do not need a dash before the option. Removing unused memory watcher. r=blassey, a=blocking-fennec

This commit is contained in:
Doug Turner
2011-02-02 01:00:34 -08:00
parent 034552caf3
commit 41c1356cc5
7 changed files with 2 additions and 46 deletions

View File

@@ -97,7 +97,6 @@ class GeckoAppShell
public static native void putenv(String map);
public static native void onResume();
public static native void onLowMemory();
public static native void onCriticalOOM();
public static native void callObserver(String observerKey, String topic, String data);
public static native void removeObserver(String observerKey);
public static native void loadLibs(String apkName, boolean shouldExtract);
@@ -137,7 +136,7 @@ class GeckoAppShell
// On some device, we do not want to ever over-allocate.
if (android.os.Build.MODEL.equals("Nexus S") == true)
GeckoAppShell.putenv("MALLOC_OPTIONS=-o");
GeckoAppShell.putenv("MALLOC_OPTIONS=o");
File f = new File("/data/data/" +
GeckoApp.mAppContext.getPackageName() + "/tmp");