diff options
Diffstat (limited to 'runtime/native/dalvik_system_VMRuntime.cc')
-rw-r--r-- | runtime/native/dalvik_system_VMRuntime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/dalvik_system_VMRuntime.cc b/runtime/native/dalvik_system_VMRuntime.cc index decbc66174..d9bb121025 100644 --- a/runtime/native/dalvik_system_VMRuntime.cc +++ b/runtime/native/dalvik_system_VMRuntime.cc @@ -155,7 +155,7 @@ static jstring VMRuntime_classPath(JNIEnv* env, jobject) { } static jstring VMRuntime_vmVersion(JNIEnv* env, jobject) { - return env->NewStringUTF(Runtime::Current()->GetVersion()); + return env->NewStringUTF(Runtime::GetVersion()); } static jstring VMRuntime_vmLibrary(JNIEnv* env, jobject) { |