summaryrefslogtreecommitdiffstats
path: root/luni/src
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-03-15 17:41:42 -0700
committerJeff Brown <jeffbrown@google.com>2012-03-15 19:04:35 -0700
commit92f87a4de2f7c360a44f0195ef748874a1f4378e (patch)
treeba52d35e918c7d3ab92a8af621de5ff495b373da /luni/src
parent95ae73a81948944b24aa4962e9e0ec375fae8467 (diff)
downloadlibcore-92f87a4de2f7c360a44f0195ef748874a1f4378e.zip
libcore-92f87a4de2f7c360a44f0195ef748874a1f4378e.tar.gz
libcore-92f87a4de2f7c360a44f0195ef748874a1f4378e.tar.bz2
Remove unnecessary last parameter to nativeExit.
Change-Id: I4c46e643647440fb3606179f773cd202a38a36ce
Diffstat (limited to 'luni/src')
-rw-r--r--luni/src/main/java/java/lang/Runtime.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/luni/src/main/java/java/lang/Runtime.java b/luni/src/main/java/java/lang/Runtime.java
index b3a0796..320f157 100644
--- a/luni/src/main/java/java/lang/Runtime.java
+++ b/luni/src/main/java/java/lang/Runtime.java
@@ -284,7 +284,7 @@ public class Runtime {
}
// Get out of here finally...
- nativeExit(code, true);
+ nativeExit(code);
}
}
}
@@ -393,7 +393,7 @@ public class Runtime {
throw new UnsatisfiedLinkError("Library " + libraryName + " not found; tried " + candidates);
}
- private static native void nativeExit(int code, boolean isExit);
+ private static native void nativeExit(int code);
private static native String nativeLoad(String filename, ClassLoader loader);
@@ -595,7 +595,7 @@ public class Runtime {
*/
public void halt(int code) {
// Get out of here...
- nativeExit(code, false);
+ nativeExit(code);
}
/**